/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

:root{
    --primary-color:#012c5b;
    --secondary-color:#18D2C2;
    --heading-color:#10233B;
    --text-color:#6B7280;
    --white-color:#ffffff;
    --bg-color:#F8FBFF;
    --light-bg-color:#F8FBFF;
    --dark-color:#1a251e;
    --border-color:#E1EDE4;

    --section-padding:70px 0;
    --responsive-padding:40px 0;
    --common-responsive-padding:0 40px;
    --common-section-padding:0 0 70px 0;

    --heading-font:'Inter',sans-serif;
    --body-font:'Inter',sans-serif;

    --gradient-primary:linear-gradient(135deg,#012c5b,#18D2C2);
    --gradient-secondary:linear-gradient(135deg,#096467,#59d0c8);

    --transition:.35s ease;
    --radius:20px;
	
	--card-shadow: 0 10px 30px rgba(1, 44, 91, 0.05);
    --transition: all 0.3s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    /* background:var(--bg-color); */
    color:var(--text-color);
    overflow-x:hidden;
    font-size:16px;
    line-height:1.7;
}

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

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

a{
    text-decoration:none;
    transition:var(--transition);
}

.container{
    max-width:1220px;
}

.container-fluid{
    width:98%;
    margin:0 auto;
}


h1,
h2,
h3,
h4,
h5,
h6{
    font-family:var(--heading-font);
    color:var(--heading-color);
    font-weight:700;
    margin-bottom:0;
}

.section-title {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 53px;
    font-weight: 700;
    line-height: 65px;
}

.section-title span{
    color:var(--secondary-color);
}

p{
    color:var(--text-color);
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

.section-text{
    margin-bottom:30px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 20px;
    margin-bottom:22px;
    background:var(--primary-color);
    color:var(--white-color);
    border-radius:50px;
    font-size:13px;
    font-weight:500;
    line-height:1;
    box-shadow:0 8px 20px rgba(1,44,91,.12);
}

.section-badge i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
}

.primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:180px;
    height:56px;
    padding:0 28px;
    background:var(--primary-color);
    color:var(--white-color);
    border:1px solid var(--primary-color);
    border-radius:50px;
    font-family:var(--body-font);
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all .35s ease;
}

.primary-btn i{
    font-size:13px;
    transition:.35s ease;
}

.primary-btn:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:var(--white-color);
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(1,44,91,.15);
}

.primary-btn:hover i{
    transform:translateX(5px);
}

/* White Button */

.light-btn{
    background:var(--white-color);
    color:var(--heading-color);
    border:1px solid transparent;
}

.light-btn:hover{
    background:var(--primary-color);
    border-color:var(--primary-color);
    color:var(--white-color);
}

.common-section{
    padding:var(--common-section-padding);
}

@media(max-width:767px){

    .primary-btn{
        width:100%;
        min-width:100%;
    }

    .section-badge{
        font-size:12px;
        padding:7px 14px;
    }

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

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

}

@media(max-width:767px){

   .section-title {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
}

    p{
        font-size:15px;
    }

}
img.img-fluid.logo {
    width: 85%;
}
.header-border {
    width: 100%;
    height: 1.4px;
    background: #54d7ceb5;
    display: block;
    margin-top: 15px;
}
.header-div {
    padding: 15px 0 0 0;
}
/* Hero-section */

.hero-section{
    background:var(--bg-color);
}
.header-section.sticky-top {
    z-index: 1030; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s ease-in-out; 
}
.hero-content{
    height:100%;
    padding:60px 45px;
    border-radius:var(--radius);
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(24,210,194,.78),rgba(16,35,59,.58)),
    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);

    background-size:100%,60px 60px,60px 60px;
}

.hero-content::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
    rgba(255,255,255,.05),
    rgba(1,44,91,.12));
    pointer-events:none;
}

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

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    color: var(--heading-color);
    margin-bottom: 22px;
}

.hero-content h1 span{
    display:block;
    color:var(--white-color);
}

.hero-content p{
    max-width:620px;
    color:rgba(255,255,255,.92);
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-image{
    height:100%;
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--white-color);
}

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

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

/* Responsive */

@media(max-width:991px){

.hero-content{
    padding:45px 35px;
}

.hero-content h1 {
    font-size: 29px;
    line-height: 43px;
    margin: 0 0 10px 0;
}

.hero-image{
    height:450px;
}

.about-wrapper{
    padding:25px;
}

}

@media(max-width:767px){

.hero-content{
    text-align:center;
    align-items:center;
    padding:35px 25px;
}

.hero-btns{
    justify-content:center;
}

.primary-btn{
    width:100%;
}

.hero-image{
    height:350px;
}

.about-wrapper{
    padding:20px;
}

.feature-box{
    padding:20px;
}

}

/* about-Us */

.about-manufacturing-section {
    padding: var(--section-padding);
}

.about-wrapper{
    background:#f3f7fb;
    border-radius:var(--radius);
    padding:35px;
}

.about-image{
    overflow:hidden;
    border-radius:18px;
    height:100%;
}

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

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

.about-content p{
    margin-bottom:25px;
}

.feature-box{
    background:var(--white-color);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:25px;
    margin-bottom:30px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.feature-item:not(:last-child){
    margin-bottom:18px;
    padding-bottom:18px;
    border-bottom:1px solid var(--border-color);
}

.feature-item i{
    color:var(--secondary-color);
    font-size:18px;
    margin-top:4px;
}

.feature-item span{
    color:var(--text-color);
    line-height:1.7;
}


/* Services-section  */

.service-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.service-card,
.service-card-horizontal{
    background:var(--white-color);
    border:1px solid var(--border-color);
    border-radius:18px;
    transition:.35s ease;
    overflow:hidden;
}

.service-card:hover,
.service-card-horizontal:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(1,44,91,.08);
}

.service-image{
    overflow:hidden;
}

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

.service-card:hover .service-image img,
.service-card-horizontal:hover .service-image-sm img{
    transform:scale(1.08);
}

.service-content{
    padding:30px 20px;
}

.service-content h4{
    font-size:22px;
    font-weight:700;
    color:var(--heading-color);
    margin-bottom:10px;
}

.service-content p{
    margin-bottom:0;
    font-size:15px;
    line-height:1.7;
}

.service-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.service-card-horizontal{
    display:flex;
    align-items:center;
    padding:12px;
    gap:18px;
}

.service-image-sm{
    flex:0 0 140px;
    border-radius:12px;
    overflow:hidden;
}

.service-image-sm img{
    width:100%;
    height:110px;
    object-fit:cover;
    transition:.5s;
}

.service-card-horizontal .service-content{
    flex:1;
    padding:0;
    min-width:0;
}

.service-card-horizontal h4{
    font-size:22px;
    margin-bottom:8px;
}

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

.service-card-lg {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-lg .service-image {
    flex-grow: 1;
    display: flex;
}

.service-card-lg .service-image img {
    height: 100%;
    min-height: 260px;
}
.service-arrow{
    width:48px;
    height:48px;
    min-width:48px;
    display:flex;
    flex-shrink:0;
    align-items:center;
    justify-content:center;
    background:var(--secondary-color);
    color:var(--white-color);
    border-radius:50%;
    transition:.35s;
}

.service-arrow i{
    transform:rotate(45deg);
    transition:.35s;
}

.service-arrow:hover{
    background:var(--primary-color);
    color:var(--white-color);
}

.service-arrow:hover i{
    transform:rotate(45deg) scale(1.15);
}

@media(max-width:1199px){

.service-image img{
    height:220px;
}

.service-image-sm{
    flex:0 0 120px;
}

.service-image-sm img{
    height:100px;
}

}

@media(max-width:991px){

.service-card-horizontal{
    flex-wrap:wrap;
}

.service-image-sm{
    flex:0 0 100%;
}

.service-image-sm img{
    width:100%;
    height:220px;
}

.service-card-horizontal .service-content{
    width:100%;
}

.service-arrow{
    margin-left:auto;
}

}

@media(max-width:767px){

.section-heading{
    margin-bottom:35px;
}

.service-image img{
    height:220px;
}

.service-image-sm img{
    height:180px;
}

.service-bottom .service-arrow{
    margin-top:10px;
}

.service-card-horizontal{
    padding:15px;
}

.service-content h4{
    font-size:20px;
}

.service-card-horizontal h4{
    font-size:20px;
}

}

/* Why choose-us */

.why-choose-section{
    background:var(--bg-color);
}

.choose-slider .owl-stage{
    display:flex;
}

.choose-slider .owl-item{
    display:flex;
    height:auto;
}

.choose-slider .item{
    display:flex;
    width:100%;
    height:100%;
}

.choose-card{
    width:100%;
    /* aspect-ratio: 16 / 9; */
    min-height: 260px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:15px;
    background-position:center;
    background-size:100% 100%;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
    border:1px solid var(--border-color);
    border-radius:18px;
    transition:.35s ease;
}
.choose-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(71 69 69 / 46%);
    z-index: 0;
    transition:.35s ease;
}
.choose-card:hover::before{
    background:rgba(255, 255, 255, 0.1); /* Slightly reveal more image on hover */
}
.choose-card .choose-icon,
.choose-card h4 {
    position: relative;
    z-index: 1;
    color: #fff !important;
    /* text-shadow: 0 1px 3px rgba(255,255,255,0.8); */
}
.choose-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(1,44,91,.10);
}

.choose-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--secondary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    transition:.35s ease;
}

.choose-icon i{
    font-size:24px;
    color:var(--primary-color);
    transition:.35s ease;
}

.choose-card:hover .choose-icon{
    background:var(--primary-color);
}

.choose-card:hover .choose-icon i{
    color:var(--white-color);
}
 
.choose-card h4{
    /* font-size:18px; */
    font-weight:700;
    line-height:1.45;
    color:var(--heading-color);
    margin:0;
}

@media(max-width:991px){

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

}

@media(max-width:767px){

    .choose-card{
        min-height:180px;
    }

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

}

/* Product-category */

section.certification-section {
    border-top: 1.5px solid #e7e7e7;
}
.product-category-section{
   padding: var(--section-padding);
}

.category-card{
    background:var(--white-color);
    border:1px solid var(--border-color);
    border-radius:20px;
    padding:28px 22px;
    height:100%;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
      width:100%;
    display:flex;
    flex-direction:column;
}

.category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--gradient-primary);
    transform:scaleX(0);
    transition:.35s;
}

.category-card:hover::before{
    transform:scaleX(1);
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(1,44,91,.08);
}

.category-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(24,210,194,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    transition:.35s;
}

.category-icon i{
    color:var(--primary-color);
    font-size:24px;
    transition:.35s;
}

.category-card:hover .category-icon{
    background:var(--secondary-color);
    transform:rotate(8deg);
}

.category-card:hover .category-icon i{
    color:var(--white-color);
}

.category-card h4{
    font-size:20px;
    font-weight:700;
    color:var(--heading-color);
    margin-bottom:14px;
}

.category-card p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--text-color);
}

.category-card:hover h4{
    color:var(--primary-color);
}
/* .row>[class*="col-"]{
    display:flex;
} */
@media(max-width:1199px){

.category-card{
    padding:24px 20px;
}

.category-card h4{
    font-size:22px;
}

}

@media(max-width:991px){

.category-card{
    min-height:100%;
}

}

@media(max-width:767px){

.section-heading{
    margin-bottom:35px;
}

.category-card{
    padding:22px 18px;
}

.category-icon{
    width:55px;
    height:55px;
}

.category-icon i{
    font-size:20px;
}

.category-card h4{
    font-size:20px;
}

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

}

/* Our-products */

.featured-products-section {
    background: var(--bg-color);
    padding: var(--section-padding);
}

.featured-products-slider .owl-stage{
    display:flex;
}

.featured-products-slider .owl-item{
    display:flex;
    height:auto;
}

.featured-products-slider .item{
    display:flex;
    width:100%;
    height:100%;
}

.product-card {
    width: 100%;
    height: 100%;
    /* min-height: 420px; */
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 6px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all .35s ease;
    overflow: hidden;
    position: relative;
}
.product-content p {
    padding: 0 22px 5px 22px;
}
.product-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--gradient-primary);
    transform:scaleX(0);
    transition:.35s;
}

.product-card:hover::before{
    transform:scaleX(1);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(1,44,91,.08);
}

.product-image{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition:.45s ease;
}

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

.product-content h4{
    font-size:24px;
    font-weight:700;
    color:var(--heading-color);
    /* margin-bottom:12px; */
}

.product-content p{
    font-size:15px;
    line-height:1.7;
    color:var(--text-color);
    margin:0;
}
@media(max-width:1199px){

.product-card{
    /* min-height:390px; */
}

.product-image{
    height:200px;
}

.product-image img{
    max-width:160px;
}

}

@media(max-width:991px){

.product-card{
    /* min-height:370px; */
    padding:30px 20px;
}

.product-content h4{
    font-size:21px;
}

}

@media(max-width:767px){

.product-card{
    /* min-height:340px; */
    padding:25px 18px;
}

.product-image{
    height:auto;
}
.product-content h4{
    font-size:20px;
}

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

}

.owl-carousel .owl-nav{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
}

.owl-carousel .owl-nav button{
    width:48px;
    height:48px;
    border-radius:50%!important;
    background:var(--white-color)!important;
    border:1px solid var(--border-color)!important;
    color:var(--primary-color)!important;
    transition:.35s;
}

.owl-carousel .owl-nav button:hover{
    background:var(--primary-color)!important;
    color:var(--white-color)!important;
}

/* TESTIMONIAL SECTION */

.testimonial-slider .owl-stage{
    display:flex;
}

.testimonial-slider .owl-item{
    display:flex;
    height:auto;
}

.testimonial-slider .item{
    width:100%;
    display:flex;
    height:100%;
}

.testimonial-card {
    width: 100%;
    min-height: 360px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: .35s ease;
    overflow: hidden;
    background: var(--bg-color);
}
.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--gradient-primary);
    transform:scaleX(0);
    transition:.35s;
}

.testimonial-card:hover::before{
    transform:scaleX(1);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(1,44,91,.08);
}

.quote-icon{
    margin-bottom:22px;
}

.quote-icon i{
    font-size:38px;
    color:var(--heading-color);
}

.testimonial-card p{
    color:var(--text-color);
    font-size:15px;
    line-height:1.9;
    margin-bottom:35px;
}

.testimonial-footer{
    margin-top:auto;
}

.client-info{
    display:flex;
    align-items:center;
    gap:16px;
}

.client-img{
    width:60px;
    height:60px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.client-content h5{
    font-size:18px;
    font-weight:700;
    color:var(--heading-color);
    margin-bottom:4px;
}

.client-content span{
    display:block;
    font-size:14px;
    color:#9aa3b2;
    margin-bottom:8px;
}

.rating{
    display:flex;
    gap:4px;
}

.rating i{
    color:#ff6b00;
    font-size:15px;
}
@media(max-width:991px){

.testimonial-card{
    padding:30px;
    min-height:340px;
}

}

@media(max-width:767px){

.testimonial-card{
    padding:25px;
    min-height:320px;
}

.quote-icon i{
    font-size:32px;
}

.client-img{
    width:52px;
    height:52px;
}

.client-content h5{
    font-size:16px;
}

.client-content span{
    font-size:13px;
}

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

}
section.testimonial-section .owl-nav button {
    display: none;
}

/* Footer-section */

.main-footer{
    position:relative;
    background:#0f1d2d;
    overflow:hidden;
    padding:80px 0 205px;
}

.main-footer::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-120px;
    left:-120px;
    border-radius:50%;
    background:rgba(24,210,194,.08);
    filter:blur(120px);
}

.main-footer::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    bottom:-100px;
    right:-80px;
    border-radius:50%;
    background:rgba(1,44,91,.18);
    filter:blur(120px);
}

.main-footer .container,
.footer-cta,
.footer-top,
.footer-bottom{
    position:relative;
    z-index:5;
}


.footer-cta{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    padding:70px 35px;
    margin-bottom:70px;
    background:linear-gradient(180deg,#2bcac3b0,#2b5f9070);
    transition:.4s;
}

.footer-cta:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(24,210,194,.18);
}

.footer-pattern{
    position:absolute;
    inset:0;
    background:url("images/Image.png") center/cover no-repeat;
    opacity:.18;
}

.footer-cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:760px;
    margin:auto;
}


.footer-cta-content p{
    max-width:620px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.92);
}

.footer-btns{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}



.footer-logo{
    max-width:190px;
    margin-bottom:20px;
    transition:.35s;
}

.footer-logo:hover{
    transform:scale(1.05);
}

.footer-about p{
    max-width:290px;
    line-height:1.9;
    color:rgba(255,255,255,.70);
}

.footer-widget h4{
    color:#fff;
    font-size:20px;
    font-weight:500;
    margin-bottom:25px;
}

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

.footer-widget li{
    margin-bottom:14px;
}

.footer-widget li:last-child{
    margin-bottom:0;
}

.footer-widget a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
    transition:.3s;
}

.footer-widget a:hover{
    color:var(--secondary-color);
    padding-left:8px;
    text-decoration: underline;
}

.footer-contact li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    color:rgba(255,255,255,.72);
}

.footer-contact i{
    color:var(--secondary-color);
    margin-top:4px;
    transition:.3s;
}

.footer-contact li:hover i{
    transform:scale(1.2);
}


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

.footer-bottom p,
.footer-bottom a{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,.65);
    text-decoration:none;
}

.footer-bottom a:hover{
    color:var(--secondary-color);
}

.footer-bottom span{
    margin:0 10px;
    color:rgba(255,255,255,.30);
}

.footer-bg-text {
    position: absolute;
    left: 50%;
    bottom: -53px;
    transform: translateX(-50%);
    font-size: 215px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 10px;
    white-space: nowrap;
    color: rgb(0 199 182 / 57%);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

@media(max-width:1199px){


.footer-bg-text{
    font-size:190px;
}

}

@media(max-width:991px){

.main-footer{
    padding:60px 0 130px;
}

.footer-cta{
    padding:50px 25px;
}

.footer-widget{
    margin-top:6px;
}

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

.footer-bottom .text-lg-end{
    text-align:center!important;
    margin-top:15px;
}

.footer-bg-text{
    font-size:140px;
    bottom:-30px;
}

}

@media(max-width:767px){

.main-footer{
    padding:45px 0 90px;
}

.footer-cta{
    padding:40px 20px;
}

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

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

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

.footer-btns .primary-btn{
    width:100%;
    justify-content:center;
}

.footer-widget h4 {
    margin-bottom: 18px;
    margin-top: 25px;
}
.footer-about p{
    max-width:100%;
}

.footer-bg-text{
    font-size:85px;
    letter-spacing:4px;
    bottom:-10px;
}

}

@media(max-width:480px){


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

}

/* Responsive-css */

@media(max-width:767px){
.mega-menu-toggle {
    float: right !important;
    margin: 0 0 0 120px;
}
.row>[class*="col-"]{
    display:block;
}
section.about-manufacturing-section {
    padding: var(--responsive-padding);
}
section.services-section.common-section {
    padding: 0 8px;
}
section.why-choose-section {
 margin-top: 15px;
}
section.product-category-section {
padding: var(--common-responsive-padding);
}
section.certification-section {
    margin-top: 35px;
}
.featured-products-section {
    padding: var(--responsive-padding);
}
	.product-image img {
    border-radius: 15px;
}
}
.footer-bg-text a {
    color:#18d2c2a6;
}
/* Inner-pages css */

.content-box {
    background: var(--white);
/*     padding: 2.5rem; */
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
	padding:30px 40px 6px 40px;
}

.content-box:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-color);
}

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

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}
.content-box.details-box p{
	padding:8px 0;
}
.content-box.details-box p i {
    color: var(--secondary-color);
}
.content-box.details-box {
    height: 64%;
}
h2.section-title.pcd-text {
    font-size: 49px;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.stats-counter {
    background: linear-gradient(135deg, var(--primary-color) 0%, #02438a 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stats-counter span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}
.about-text {
    color: var(--secondary-color);
    font-size: 25px;
}

/* Breadcrumb-css */

.page-breadcrumb {
    background: linear-gradient(135deg, #012c5b 0%, #03bf9e 100%);
    padding: 75px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

section.innerpages{
    padding:60px 0;
}

.page-breadcrumb::before{
    content:"";
    position:absolute;
    top:-50px;
    right:-50px;
    width:200px;
    height:200px;
    background:rgba(255,255,255,0.10);
    border-radius:50%;
}

.page-breadcrumb::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.10);
    border-radius:50%;
}

.page-breadcrumb .container{
    position:relative;
    z-index:2;
}

.page-breadcrumb h1{
    color:#fff;
    margin:0;
    font-weight:700;
}

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

.page-breadcrumb .breadcrumb_new a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.page-breadcrumb .breadcrumb_new a:hover{
    color:#f5f5f5;
}

.page-breadcrumb .extraa{
    margin:0;
}

@media (max-width:767px){

    .page-breadcrumb{
        padding:35px 0;
        text-align:center;
    }

    .page-breadcrumb h1{
        font-size:28px;
        margin-bottom:10px;
    }

    .page-breadcrumb .extraa{
        margin-top:10px;
    }
h2.section-title.pcd-text {
    font-size: 41px;
    line-height: 47px;
    margin: 0 0 15px 0;
}
	section.innerpages {
    padding: 40px 0;
}
}

/* Quick-menu */

#sequence {
    width: 100%;
    float: left;
    background: linear-gradient(82deg, #18d2c2 0%, rgb(24 210 194) 53%, #18d2c2 100%);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #000000 !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: #012c5b !important;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid #fff;
}
ul#mega-menu-primary li a {
    font-weight: 500 !important;
}
ul#mega-menu-primary li a:hover{
	  font-weight: 500 !important;
}
.hero-video video {
    border-radius: var(--radius);
}

#mega-menu-wrap-primary #mega-menu-primary .mega-menu-description {
    display: none !important;
}
.woocommerce .products ul, .woocommerce ul.products {
    margin: 0 0 1em;
    padding: 0;
    list-style: none outside;
    clear: both;
    padding: 20px;
}

.woocommerce .woocommerce-result-count {
    margin: 0 0 1em;
    padding: 30px 0 0 25px;
}
.woocommerce .woocommerce-ordering {
    margin: 0 0 1em;
    padding: 30px 20px 0 0;
}
.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 2em;
    padding: 0;
    display: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0 0 0 1em;
    margin: 0 0 1.618em;
    overflow: hidden;
    position: relative;
    display: none !important;
}

@media only screen and (max-width: 768px) {
    #mega-menu-wrap-primary .mega-menu-toggle {
        display: none !important;
    }
    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        background-color: transparent !important;
        display: block !important;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
        background-color: transparent !important;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
        color: white;
        background-color: transparent !important`;
    }
}