
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --green: #5da832;
    --blue: #071c3c;
}

body{
     font-family: "Roboto", sans-serif;
   
    
}
a{
    text-decoration: none;
}


/* header section start now */


.top-header{

    background:var(--blue);
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);

}

.topbar-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

}

.top-header .topbar-left{

    display:flex;
    align-items:center;
    gap:25px;

}

.top-header .topbar-left a{

    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;

}

.top-header .topbar-left a:hover{

    color:var(--green);

}

.top-header .topbar-left i {
    color: white;
    margin-right: 8px;
}

.top-header .topbar-center{

    color:#fff;
    font-size:14px;
    font-weight:500;
    text-align:center;

}

.top-header .topbar-center i{

    color:var(--green);
    margin-right:8px;

}

.top-header .topbar-right{

    display:flex;
    gap:10px;

}

.top-header .topbar-right a{

    width:34px;
    height:34px;

    border-radius:50%;

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

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

    color:#fff;

    transition:.35s;

}

.top-header .topbar-right a:hover{

    background:var(--green);
    transform:translateY(-3px);

}

/* Navbar */

.navbar{
    padding:16px 0;
}
.navbar .navbar-brand {
 
    width: 225px;
}
.navbar .btn-yelow {
    background: #ffc000;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
    transition: .3s;
    padding: 12px 11px !important;
}
.navbar .btn-yelow:hover{
    background-color: #0b1f43;
    color: white;
}

.navbar .navbar-nav .nav-link {
    color: #0b1f43;
    font-weight: 600;
    padding: 8px 7px;
    transition: .3s;
    border-bottom: 2px solid transparent;
    font-size: 14px;
}
.navbar .align-items-lg-center {
    align-items: center!important;
    gap: 5px;
}

.navbar .navbar-nav .nav-link:hover{
    color:#5da832;
     border-bottom: 2px solid #5da832;
}
.navbar .nav-link.active {
    color: #5da832 !important;
    border-bottom: 2px solid #5da832;
}

.navbar .nav-item.dropdown:hover>.dropdown-menu{
    display:block;
    margin-top:0;
}
.dropdown-item {

    color: black !important;
    font-size: 16px;
}
.dropdown-item:hover{
    background-color: #071c3c;
    color: white !important;
}



@media screen and (max-width:767px) {
.navbar .navbar-nav .nav-link {
  
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

}

/* banner section start noe=w */

.banner{
    position:relative;
}

.carousel-item{
    position:relative;
}

.carousel-item img{
    width:100%;
    height:600px;
    object-fit:cover;
}
.banner-content {
    position: absolute;
    top: 0;
    left: 6%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    z-index: 99;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    height: 500px;
    overflow: hidden;
    overflow-y: auto;
}
@media screen and (max-width: 767px) {
    .navbar-nav {
        align-items: left;
    }
    
}

.banner h6{
    font-size: 20px;
    color: white;
}
.banner h1 {
    font-size: 62px;
    font-weight: 700;
    font-family: auto;
    line-height: 1.2;
    color: white;
}
.banner h1 span{
    color: var(--green);
}
.banner p {
    width: 279px;
    line-height: 1.7;
    color: white;
}
.banner .banner-btn {
    background: var(--green);
    color: white;
    padding: 13px 20px;
    font-weight: 600;
    border: 1px solid var(--green);
}
.banner .banner-btn:hover{
    background-color: white;
    color: var(--green);
    border: 1px solid white;
}
.banner .banner-btns {
    background: transparent;
    color: white;
    padding: 13px 20px;
    font-weight: 600;
    border: 1px solid white;
}
.banner .banner-btns:hover{
    background-color: white;
    color: var(--green);
    border: 1px solid white;
}


/* banner section stopping react */



.counter-section {
    padding: 50px 0;
    margin-top: -29px;
    position: relative;
    z-index: 5;
}

.counter-section .counter-wrapper{
    background:#fff;
    border-radius:18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:hidden;
}

.counter-section .counter-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 30px;
    position:relative;
}

.counter-section .counter-box:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:25%;
    width:1px;
    height:50%;
    background:#e8e8e8;
}

.counter-section .counter-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#edf9ef;
    display:flex;
    align-items:center;
    justify-content:center;
}

.counter-section .counter-icon i{
    font-size:26px;
    color:var(--green);
}

.counter-section .counter-content h2{
    font-size:28px;
    font-weight:700;
    color:#0b2242;
    margin-bottom:5px;
}

.counter-section .counter-content p{
    font-size:16px;
    color:#666;
    line-height:24px;
}

@media(max-width:991px){

.counter-section .counter-wrapper{
    flex-wrap:wrap;
}

.counter-section .counter-box{
    width:50%;
    flex:none;
}

.counter-section .counter-box::after{
    display:none;
}

}

@media(max-width:576px){

.counter-section .counter-box {
    width: 100%;
    padding: 25px;
    justify-content: center;
    text-align: center;
}

.counter-section .counter-content h2{
    font-size:30px;
}

}

/* conter section endinng stopping */


.product-category {
    padding: 40px 0;
    background: #f7f8fc;
}

.product-category .section-title{
    text-align:center;
    margin-bottom:20px;
}




.product-category .section-title h2 {
    font-size: 42px;
    margin: 10px 0;
    color: var(--blue);
    position: relative;
    display: inline;
}
.product-category .section-title h2::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--green);
    position: absolute;
    top: 26px;
    right: -14%;
}
.product-category .section-title h2::before {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--green);
    position: absolute;
    top: 26px;
    left: -14%;
}

.product-category .section-title p{
    color:#666;
}

.product-category .item{
    padding:15px;
}

.product-category .product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.4s;
    text-align:center;
}

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

.product-category .product-img{
    height:220px;
    overflow:hidden;
}

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

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

.product-category .product-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    color: #fff;
    margin: -30px auto 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    position: relative;
    z-index: 10;
}

.purple{background:#6436c7;}
.blue{background:#0d72b9;}
.green{background:#219653;}
.orange{background:#d97706;}

.product-category .product-content {
    padding: 0 9px 30px;
}

.product-category .product-content h4 {
    font-size: 17px;
    color: #0d2343;
    margin-bottom: 16px;
    font-weight: 700;
}

.product-category .product-content a{
    color:var(--green);
    text-decoration:none;
    font-weight:700;
}

.product-category .product-content a i{
    margin-left:6px;
}




.product-category .slick-dots li button:before{
    font-size:13px;
    color:var(--green);
}

.product-category .slick-dots li.slick-active button:before{
    color:var(--green);
}

@media(max-width:768px){

.product-category .section-title h2{
    font-size:32px;
}

}

/* product-category ending stopping area */


.why-choose {
    padding: 45px 0;
    background: linear-gradient(rgb(4 26 58 / 63%), rgb(4 26 58 / 64%)), url(../images/whay-choose.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.why-choose .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.why-choose .section-heading span{
    font-size:34px;
    font-weight:700;
    color:#fff;
    position:relative;
    display:inline-block;
   
}

.why-choose .section-heading span:before,
.section-heading span:after{
    content:'';
    position:absolute;
    width:80px;
    height:2px;
    background:#3b9d41;
    top:50%;
}

.why-choose .section-heading span:before{
    right:105%;
}

.why-choose .section-heading span:after{
    left:105%;
}

.why-choose .section-heading p {
    color: #fff;
    margin-top: 5px;
    font-size: 14px;
}

.why-choose .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.why-choose .why-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:16px;
    padding:13px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.why-choose .why-card:hover{
    transform:translateY(-8px);
    border-color:#3b9d41;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.why-choose .icon{
    width:65px;
    height:65px;
    border-radius:50%;
    border:2px solid #3b9d41;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    color:#3b9d41;
    font-size:28px;
    transition:.4s;
}

.why-choose .why-card:hover .icon{
    background:#3b9d41;
    color:#fff;
    transform:rotate(10deg);
}

.why-choose .content h4{
    font-size:18px;
    color:var(--blue);
    margin-bottom:8px;
    line-height:28px;
}

.why-choose .content p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    margin-bottom: 0;
}

@media(max-width:1200px){

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

}

@media(max-width:768px){
 
.why-choose .why-grid{
    grid-template-columns:1fr;
}

.why-choose .section-heading span{
    font-size:28px;
}

.why-choose .section-heading span:before,
.section-heading span:after{
    display:none;
}

.why-choose .why-card{
    padding:22px;
}

}

/* .why-choose stooping ending the-end of why choose */

.featured-products{
    padding:45px 0;
    background:#f6f8fb;
}

.featured-products .section-title{
    text-align:center;
    margin-bottom:20px;
}



.featured-products .section-title h2{
    font-size:42px;
    color:var(--blue);
    margin:10px 0;
    font-weight: 700;
}


.featured-products .product-item{
    padding:15px;
}

.featured-products .product-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;

}

.featured-products .product-card:hover{

    transform:translateY(-8px);

}

.featured-products .product-image{

    height:220px;
    overflow:hidden;

}

.featured-products .product-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.featured-products .product-card:hover img{

    transform:scale(1.1);

}

.featured-products .product-body{

    padding:20px;


}

.featured-products .product-body h3{

    font-size:22px;
    color:var(--blue);
    margin-bottom:8px;

}

.featured-products .product-body span{

    color:#666;

}

.featured-products .rating{

    color:#ffb400;
    font-size:20px;
    margin:15px 0;

}

.featured-products .product-btn{

    display:flex;
    margin-top:20px;

}

.featured-products .view-btn {
    background: #39b54a;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    border: 1px solid #39b54a;
    align-items: center;
    display: flex;
}
.featured-products .view-btn i{
    font-size: 27px;
}
.featured-products .view-btn:hover{

    background: transparent;
    color:#39b54a;
   
    border: 1px solid 39b54a;

}

.featured-products .quote-btn{

    background:var(--blue);
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    border: 1px solid var(--blue);

}
.featured-products .quote-btn:hover{

    background: transparent;
    color:var(--blue);

    border: 1px solid var(--blue);

}

.featured-products .slick-prev,
.slick-next{

    width:45px;
    height:45px;
    background:var(--green);
    border-radius:50%;
    z-index:5;

}

.featured-products .slick-prev:before,
.slick-next:before{

    color:#fff;
    font-size:22px;

}


/* featured-products stoping ending .featured-products */


.manufacturing-process{

    padding:50px 0;

    background:#08264d;

    position:relative;

    overflow:hidden;

}

.manufacturing-process .section-heading{

    text-align:center;

    margin-bottom:60px;

}

.manufacturing-process .section-heading h2{

    color:#fff;

    text-transform:uppercase;

    font-size:34px;

    font-weight:700;

}

.manufacturing-process .process-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 3fr 1fr;
}

.manufacturing-process .process-flow{

    display:flex;

    align-items:center;

    flex:1;

}

.manufacturing-process .process-item{

    text-align:center;

    width:148px;

}

.manufacturing-process .process-image {
    width: 130px;
    height: 130px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--green);
   
    position: relative;
}
.manufacturing-process .process-item:hover .process-image {
   border: 4px solid #ffc000;
}

.manufacturing-process .process-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.manufacturing-process .process-image span{

    position:absolute;

    bottom:-6px;

    left:50%;

    transform:translateX(-50%);

    background:#39b54a;

    color:#fff;

    width:28px;

    height:28px;

    border-radius:50%;

    line-height:28px;

    font-size:13px;

    font-weight:bold;

}

.manufacturing-process .process-item h4{

    margin-top:18px;

    color:#fff;

    font-size:16px;

}

.manufacturing-process .process-item p{

    color:#d6d6d6;

    font-size:14px;

}

.manufacturing-process .arrow{

    color:#6ac142;

    font-size:28px;

    margin:0 10px;

}

.manufacturing-process .quality-card {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 15px;
    background: rgba(255,255,255,.05);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 3fr;
}

.manufacturing-process .quality-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#39b54a;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.manufacturing-process .quality-icon i{

    color:#fff;

    font-size:30px;

}

.manufacturing-process .quality-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 23px;
}

.manufacturing-process .quality-card p {
    color: #d7d7d7;
    line-height: 23px;
    margin-bottom: 20px;
    font-size: 14px;
}

.manufacturing-process .quality-card a{

    color:#f5c84c;

    text-decoration:none;

    font-weight:700;

}

@media(max-width:991px){

.manufacturing-process .process-wrapper{

    flex-direction:column;

}

.manufacturing-process .process-flow{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.manufacturing-process .arrow{

    display:none;

}

.manufacturing-process .quality-card{

    width:100%;

}

}

/* .manufacturing-process ending for stop */


.certification-section {
    padding: 40px 0;
    background: #e2e2e2;
}
.certification-section h2{
    color: var(--blue);
  
}
.certification-box {
    background-color: var(--blue);
    height: 100%;
    padding: 52px 8px;
    border-radius: 5px;
}
.certificate-slider{
    margin-top: 40px;
}
.certificate-item  {
    border: 1px solid var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: .3s;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 5px;
}
.certificate-item:hover {
    transform: translateY(-5px);
    background-color: #000000c4;
}
.certificate-item img {
    width: 60px;
    margin: 0 auto;
    height: 60px;
    object-fit: cover;
}
.certificate-item h4 {
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
    color: black;
}
.certificate-item:hover h4{
    color: white;
}

.certification-section .global-box .global-btn {
    display: table;
    border: 1px solid var(--blue);
    padding: 12px 24px;
    border-radius: 5px;
    color: var(--blue);
    font-weight: 700;
}
.certification-section .global-box .global-btn:hover {
    background-color: var(--blue);
    color: white;
}
.certification-section .global-box img{
    height: 200px;
    object-fit: cover;
}
.certification-section .slick-dots li button:before {
    font-family: slick;
    font-size: 11px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 31px;
    height: 31px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.certification-section .slick-dots {
    position: absolute;
    bottom: -39px;

}

.certification-section .slick-dots li.slick-active button:before {
    color: var(--green);
}
/* .certification-section stopping */


.blog-section {
    width: 100%;
    padding: 50px 0;
}

.blog-section .blog-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.blog-section .blog-header h2{
    font-size:28px;
    color:var(--blue);
    font-weight:700;
    text-transform:uppercase;
}

.blog-section .view-blog {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--green);
    padding: 9px 20px;
    border-radius: 8px;
}
.blog-section .view-blog:hover{
    background-color: var(--green);
    color: white;
}

.blog-section .blog-item{
    padding:10px;
}

.blog-section .blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    transition: .4s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    min-height: 394px;
}

.blog-section .blog-card:hover{

    transform:translateY(-8px);

}

.blog-section .blog-img {
    overflow: hidden;
    height: 217px;
}

.blog-section .blog-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.blog-section .blog-card:hover img{

    transform:scale(1.1);

}

.blog-section .blog-content{

    padding:20px;

}

.blog-section .blog-date{

    color:#777;
    font-size:14px;

}

.blog-section .blog-content h3 {
    margin: 15px 0;
    font-size: 20px;
    color: var(--blue);
    line-height: 30px;
    /* min-height: 90px; */
    font-weight: 700;
}

.blog-section .blog-content a{

    color:#2b9d46;
    text-decoration:none;
    font-weight:600;

}

.blog-section .blog-content a i{

    margin-left:5px;

}

.blog-section .blog-slider .slick-slide{

    padding:0 8px;

}

.blog-section .blog-slider .slick-prev,
.blog-slider .slick-next{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#2b9d46;
    z-index:99;

}

.blog-section .blog-slider .slick-prev{

    left:-18px;

}

.blog-section .blog-slider .slick-next{

    right:-18px;

}
 
.blog-section .blog-slider .slick-prev:before,
.blog-slider .slick-next:before{

    color:#fff;
    font-size:20px;

}


/* .blog-section ending */


/*=========================================
        TESTIMONIAL SECTION
==========================================*/

.testimonial-section {
    padding: 37px 0;
    background: linear-gradient(rgb(2 2 2 / 90%), rgb(23 23 23 / 69%)), url(../images/manufacturing-plant.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.testimonial-section .section-title{
    text-align:center;
    margin-bottom:40px;
    position: relative;
}

.testimonial-section .section-title span{
    display:block;
    font-size:42px;
    font-weight:800;
    color:#f39c12;
    text-transform:uppercase;
    letter-spacing:1px;
}

.testimonial-section .section-title h2{
    font-size:34px;
    color:#08264d;
    margin:15px 0;
}

.testimonial-section .section-title p {
    color: #fff;
    max-width: 650px;
    margin: auto;
    line-height: 28px;
    margin-top: 19px;
}

.testimonial-section .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--blue);
    display: block;
    margin: 18px auto 0;
    border-radius: 50px;
    position: absolute;
    top: 46px;
    text-align: center;
    /* margin: 0 auto; */
    left: 45%;
}

/*=========================================
        SLIDER
==========================================*/

.testimonial-section .testimonial-slider{
    margin-top:20px;
}

.testimonial-section .testimonial-item{
    padding:45px 15px 20px;
}

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

.testimonial-section .testimonial-card{

    position:relative;
    background:#fff;
    padding:80px 35px 35px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.testimonial-section .testimonial-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

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

.testimonial-section .client-img{

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

}

.testimonial-section .client-img img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--blue);
    box-shadow: 0 5px 20px rgba(0,0,0,.18);
}

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

.testimonial-section .quote-icon{

    font-size:28px;
    color:#f39c12;
    margin-bottom:20px;

}

.testimonial-section .testimonial-content p {
    color: #555;
    line-height: 26px;
    font-size: 15px;
    margin-bottom: 30px;
}

.testimonial-section .testimonial-content h3 {
    color: var(--blue);
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonial-section .testimonial-content span{

    color:#777;
    font-size:15px;

}

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

.testimonial-section .slick-center .testimonial-card{

    transform:scale(1.06);
    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

/*=========================================
        DOTS
==========================================*/

.testimonial-section .testimonial-slider .slick-dots{

    bottom:-55px;

}

.testimonial-section .testimonial-slider .slick-dots li{

    margin:0 5px;

}

.testimonial-section .testimonial-slider .slick-dots li button:before{

    font-size:13px;
    color:#f39c12;
    opacity:.3;

}

.testimonial-section .testimonial-slider .slick-dots li.slick-active button:before{

    opacity:1;

}

/*=========================================
        ARROWS
==========================================*/


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

@media(max-width:991px){

.testimonial-section .testimonial-card{

padding:75px 25px 30px;

}

.testimonial-section .section-title span{

font-size:34px;

}

}

@media(max-width:768px){

.testimonial-section .section-title span{

font-size:28px;

}

.testimonial-section .section-title h2{

font-size:28px;

}

.testimonial-section .testimonial-content p{

font-size:16px;
line-height:28px;

}

.testimonial-section .client-img img{

width:85px;
height:85px;

}

}



/* Newsletter */
.ty{
      background:#0d3a70;
}

.newsletter{
  
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    flex-wrap:wrap;
}

.newsletter-text{
    display:flex;
    align-items:center;
    gap:15px;
}

.newsletter .icon{
    width:55px;
    height:55px;
    background:var(--green);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color: white;
}

.newsletter h3 {
    font-size: 27px;
    color: white;
}

.newsletter p{
    font-size:14px;
    color:#ddd;
    margin-bottom: 0;
}

.newsletter-form{
    display:flex;
    margin-top:10px;
}

.newsletter-form input{
    width:320px;
    padding:12px;
    border:none;
    outline:none;
}

.newsletter-form .button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 36px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 9px;
}

/* Main Footer */

/*==========================
  GOOGLE FONT
==========================*/

@media screen and (max-width:567px) {

    .top-header .topbar-center {

    display: none;
}
.top-header .topbar-left {
  
    gap: 4px;
}
.topbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}
.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.banner h1 {
    font-size: 25px;
  
}
.banner h6 {
    font-size: 16px;
   
}
.banner .banner-btn {

    margin-bottom: 10px;
}
.product-category .section-title h2 {
    font-size: 25px;
}
.product-category .section-title h2::before {
 
    top: 14px;
    left: -19%;
}
.product-category .section-title h2::after {

    top: 16px;
    right: -19%;
}
.featured-products .section-title h2 {
    font-size: 30px;
    
}
.featured-products .slick-prev, .slick-next {
 
    display: none !important;
}
.manufacturing-process .section-heading h2 {

    font-size: 22px;

}
.manufacturing-process .process-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}
.blog-section .blog-header h2 {
    font-size: 14px;

}
.blog-section .blog-slider .slick-prev, .blog-slider .slick-next {

    display: none !important; 
}
.newsletter-text {
    display: block;
    align-items: center;
    gap: 15px;
}
.newsletter .icon {
 
    margin-bottom: 10px;
}
    
}


.desktop-floating-contact {
        position: fixed;
        left: 30px;
        bottom: 10%;
        z-index: 9999;

        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .desktop-floating-contact a {
        width: 50px;
        height: 50px;
        border-radius: 50%;

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

        color: #fff;
        text-decoration: none;

        box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
        transition: .3s ease;
    }

    .desktop-floating-contact a i {
        font-size: 20px;
    }

  .float-call {
    background: #b4922b;
}

    .float-whatsapp {
        background: #25d366;
        animation: whatsappPulse 1.8s infinite;
    }

    .float-enquiry {
        background: #000;
    }

    .desktop-floating-contact a:hover {
        transform: scale(1.1);
    }

    @keyframes  whatsappPulse {

        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
        }

        70% {
            box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
 .enquiry-popup {
    position: fixed;
    top: 49%;
    left: 50%;
    width: 300px;
    max-width: 95%;
    background: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -70%);
    transition: all .4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9998;
}
.close-popup {
    position: absolute;
    right: 15px;
    top: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}
.popup-header {
    background: var(--green);
    color: #fff;
    padding: 16px 0px 16px;
    font-size: 21px;
    font-weight: 600;
    align-items: center;
    text-align: center;
}
.popup-body {
    padding: 20px;
}
.popup-body p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 15px;
    color: black;
}
.popup-body input, .popup-body textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 12px;
    outline: none;
}
.popup-body textarea {
    height: 100px;
    resize: none;
}
.popup-body button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 14px;
    cursor: pointer;
    font-size: 16px;
}

.enquiry-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.enquiry-overlay.active {
    opacity: 1;
    visibility: visible;
}
.desktop-floating-contact a span {
    display: none;
}

@media  screen and (max-width:480px) {
    .popup-body p strong{
        display: block;
    }
.popup-body input, .popup-body textarea {
  
    padding: 6px 12px;
  
    border-radius: 5px;
}
.popup-body {
    padding: 14px;
}
.popup-header {
 
    padding: 8px 0px 8px;
    font-size: 18px;
   
}
.close-popup {
 
    top: 9px; 
  
}

.enquiry-popup {
    
    border-radius: 10px;
    width: 370px;
}
.popup-header {
  
    border-radius: 10px 10px 0 0;
}

.desktop-floating-contact {
    left: 0;
    bottom: 0;
    display: flex;
    gap: 0px;
    width: 100%;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.desktop-floating-contact a {

    border-radius: 0%;
   font-size: 16px;
    width: 100%;
}
.desktop-floating-contact a span{
    display: block;
    padding-left: 5px;
    font-size: 13px;
}
.float-whatsapp {

    animation: none;
   
}
.footer-bottom {
 
    margin-bottom: 50px;
}
    
}


.footer-area {
    background: #10173e;
    position: relative;
  
    padding-top: 50px;
}
/* Background Effect */


/*=====================================
        COMMON
=====================================*/

.footer-about,
.footer-links,
.footer-contact{
    position:relative;
    z-index:2;
}

.footer-logo img {
    max-width: 100%;
    margin-bottom: 20px;
    background: white;
    border-radius: 9px;
    padding: 10px;
}

.footer-about p{
    color:#d7dde8;
    line-height:30px;
    font-size:16px;
    margin:20px 0 30px;
}

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

.footer-links h4,
.footer-contact h4{
    color:#fff;
    font-size:24px;
    margin-bottom:30px;
    position:relative;
    font-weight:700;
}

.footer-links h4::after,
.footer-contact h4::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:55px;
    height:3px;

    background:var(--green);

}

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

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

.footer-links ul li{
    margin-bottom:16px;
}

.footer-links ul li a{

    color:#d7dde8;
    text-decoration:none;
    transition:.35s;
    position:relative;
    padding-left:0;

}

.footer-links ul li a::before{

    content:"›";

    position:absolute;

    left:-15px;

    opacity:0;

    transition:.3s;

    color:var(--green);

}

.footer-links ul li a:hover{

    color:var(--green);

    padding-left:18px;

}

.footer-links ul li a:hover::before{

    opacity:1;

    left:0;

}

/*=====================================
      CONTACT INFO
=====================================*/

.footer-contact ul{

    padding:0;
    margin:0;
    list-style:none;

}

.footer-contact li {
    display: flex;
    margin-bottom: 22px;
    align-items: center;
}

.footer-contact span{

    width:45px;
    height:45px;

    min-width:45px;

    background:#0d2a58;

    border-radius:50%;

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

    margin-right:15px;

    color:var(--green);

    transition:.4s;

}

.footer-contact li:hover span{

    background:var(--green);
    color:#fff;
    transform:rotate(12deg);

}

.footer-contact a,
.footer-contact p{

    color:#d7dde8;
    text-decoration:none;
    line-height:28px;
    margin:0;
    transition:.3s;

}

.footer-contact a:hover{

    color:var(--green);

}

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

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:48px;
    height:48px;

    border-radius:50%;

    background:#0d2a58;

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

    color:#fff;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--green);

    transform:translateY(-6px);

}

/*=====================================
      COPYRIGHT
=====================================*/



.footer-bottom {
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p{

    color:#bfc8d7;

    margin:0;

    font-size:15px;

}

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

@media(max-width:991px){

.footer-about,
.footer-links,
.footer-contact{

margin-bottom:40px;

}

}

@media(max-width:767px){

.footer-area{

padding:60px 0 0;

}

.footer-logo img{

max-width:180px;

}

.footer-links h4,
.footer-contact h4{

font-size:22px;

}

.footer-social{

justify-content:flex-start;

}

.footer-bottom{

margin-top:20px;

}


}
