/*
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.7
Tested up to: 7.1
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:#236854;
    --secondary-color:#4bbbde;
    --heading-color:#10233B;
    --text-color:#6B7280;
    --white-color:#ffffff;
    --bg-color:#F8FBFF;
    --light-bg-color:#F8FBFF;
    --dark-color:#1a251e;
    --border-color:#d3b682;

    --section-padding:80px 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: 90% !important;
}

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(--border-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;
}
.hero-content h1 {
    line-height: 41px !important;
}
    p{
        font-size:15px;
    }

}
img.img-fluid.logo {
    width: 55%;
}
.header-border {
    width: 100%;
    height: 1.4px;
    background: #54d7ceb5;
    display: block;
    margin-top: 15px;
}
.header-div {
    padding: 15px 0 0 0;
}
/* Hero-section */
@media (min-width: 1500px) and (max-width: 1920px) {
	.hero-content{
        padding: 20px;
    }
}
.hero-section{
    background:var(--bg-color);
}
.hero-content h1 {
    line-height: 68px !important;
}
.hero-content {
    height: 100%;
    padding: 118px 45px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(79 191 220), rgb(35 104 84)), linear-gradient(rgb(255 255 255 / 0%) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 100%,60px 60px,60px 60px;
}
img.img-fluid.banner-img {
  border-radius: var(--radius);
}

.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;
}

section.services-section.common-section {
	padding:var(--section-padding);
}
/* 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:auto;
    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;
}

.service-card-horizontal h4{
    font-size:22px;
    margin-bottom:8px;
}
.service-content h3 {
    padding: 16px 0 0 0;
}

.service-card-horizontal p {
    font-size: 16px;
    padding: 10px 0;
}
.service-arrow{
    width:48px;
    height:48px;
    min-width:48px;
    display:flex;
    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 {
    position: relative;
    background-image: linear-gradient(rgba(35, 104, 84, 0.88), rgba(35, 104, 84, 0.88)),
        url('https://blueviolet-starling-495319.hostingersite.com/site/wp-content/uploads/2026/09/images-pharma-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--section-padding);
}
.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%;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:35px 25px;
    background:var(--white-color);
    border:1px solid var(--border-color);
    border-radius:18px;
    transition:.35s ease;
}

.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:#fff;
    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;
    }

}


/* 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: 26px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    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;
}

/* Footer-section */

.main-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 205px;
    background-image: linear-gradient(rgb(28 75 65 / 95%), rgb(31 77 60 / 99%)), url(https://blueviolet-starling-495319.hostingersite.com/site/wp-content/uploads/2026/09/images-pharma-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.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);
}


.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: #fff;
}

.footer-widget h4{
    color:#fff;
    font-size:20px;
    font-weight:800;
    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:#fff;
    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:#fff;
    margin-top:4px;
    transition:.3s;
}
ul.footer-contact li span {
    color: #fff;
}
.footer-contact li:hover i{
    transform:scale(1.2);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 28px;
}
.footer-bottom p,
.footer-bottom a{
    margin:0;
    font-size:16px;
    color:#fff;
    text-decoration:none;
}

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

.footer-bottom span{
    margin:0 10px;
    color:rgba(255,255,255,.30);
}
li span a {
    color: inherit;
    text-decoration: none;
}

li span a:hover {
    text-decoration: none;
color:#fff;
}
.footer-bg-text {
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    font-size: 260px;
    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;
}
iframe {
    border-radius: 5px;
}
@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: #18d2c27d;
}
/* 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);
}


.mobile-toggle{
    background:none;
    border:0;
    font-size:28px;
    color:var(--primary-color);
}

.offcanvas{
    width:300px;
}

.mobile-nav{
    padding:0;
    margin:0;
    list-style:none;
}

.mobile-nav li{
    border-bottom:1px solid #eee;
}

.mobile-nav li a{
    display:block;
    padding:14px 0;
    color:#222;
    text-decoration:none;
    font-weight:500;
}

.mobile-nav li a:hover{
    color:var(--primary-color);
}

.mobile-nav .sub-menu{
    margin-left:15px;
    display:block;
}

.mobile-nav .sub-menu li{
    border:none;
}

.mobile-nav .sub-menu a{
    padding:10px 0;
    font-size:15px;
}
.offcanvas-body {
    flex-grow: 1;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    overflow-y: auto;
    background: var(--primary-color);
}

/* product-range */

.product-range-section {
    position: relative;
    padding: var(--section-padding) !important;
    background: radial-gradient(circle at top left, rgb(58 151 109 / 32%), transparent 32%), #f8faf9;
    overflow: hidden;
}
/* Heading */

.product-range-heading {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.product-range-desc {
    margin: 0;
    color: #68746e;
    font-size: 16px;
    line-height: 1.8;
}


/* Card */

.product-range-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7ece9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 35px rgba(20, 45, 32, 0.06);
}

.product-range-card:hover {
    transform: translateY(-8px);
    border-color: rgba(44, 119, 76, 0.25);
    box-shadow: 0 20px 45px rgba(20, 45, 32, 0.12);
}


/* Image */

.product-image-box {
    position: relative;
    height: 285px;
    padding: 22px;
    background: linear-gradient(145deg, #f9fbfa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-range-card:hover .product-image-box img {
    transform: scale(1.05);
}


/* Category Label */

.product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 7px 13px;
    border-radius: 30px;
    background: #ffffff;
    color: #2c774c;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}


/* Overlay */

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(29, 88, 58, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.product-range-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-view-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2c774c;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(10px);
    transition: 0.35s ease;
}

.product-range-card:hover .product-view-btn {
    transform: translateY(0);
}

.product-view-btn:hover {
    background: #205c3a;
    color: #ffffff;
}


/* Content */

.product-card-content {
    padding: 22px 22px 20px;
}

.product-card-content h3 {
    margin-bottom: 8px;
    color: #18251f;
    font-size: 20px;
    font-weight: 800;
}

.product-card-content p {
    min-height: 48px;
    margin-bottom: 18px;
    color: #737d78;
    font-size: 14px;
    line-height: 1.6;
}


/* Footer */

.product-card-footer {
    padding-top: 16px;
    border-top: 1px solid #edf0ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card-footer span {
    padding: 6px 11px;
    border-radius: 30px;
    background: #eff7f2;
    color: #28704b;
    font-size: 12px;
    font-weight: 700;
}

.product-card-footer a {
    color: #2c774c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.product-card-footer a i {
    margin-left: 5px;
    transition: 0.3s;
}

.product-card-footer a:hover i {
    transform: translateX(4px);
}


/* Main Button */

.product-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: #2c774c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(44, 119, 76, 0.2);
    transition: 0.3s ease;
}

.product-main-btn:hover {
    transform: translateY(-3px);
    background: #205c3a;
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(44, 119, 76, 0.28);
}


/* Responsive */

@media (max-width: 991px) {

    .product-range-section {
        padding: 70px 0 !important;
    }
    .product-image-box {
        height: 270px;
    }
}

@media (max-width: 767px) {

    .product-range-section {
        padding: 55px 0 !important;
    }
    .product-range-desc {
        font-size: 15px;
    }

    .product-image-box {
        height: 300px;
    }
}

@media (max-width: 575px) {

    .product-image-box {
        height: 280px;
    }

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


/* PCD-PARTNER */

.pcd-franchise-section {
    position: relative;
    padding: var(--section-padding);
}


/* Main Wrapper */

.pcd-franchise-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}


/* Left Area */

.pcd-info-box {
    position: relative;
    padding: 60px 55px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(19, 74, 53, 0.96),
            rgba(17, 52, 41, 0.92)
        );
}

.pcd-info-box::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.pcd-small-title {
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.pcd-info-box p {
    margin-bottom: 18px;
    color: #fff;
    font-size: 16px;
    line-height: 1.85;
}


/* Points */

.pcd-points {
    display: grid;
    gap: 14px;
}

.pcd-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.pcd-point:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.10);
}

.pcd-point-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: #ffffff;
    color: #2f7551;
    font-size: 12px;
}

.pcd-point span {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}


/* Contact Area */

.pcd-contact-box {
    padding: 58px 48px;
    background: #ffffff;
}

.pcd-contact-heading {
    margin-bottom: 35px;
}

.pcd-form-badge {
    display: inline-block;
    margin-bottom: 13px;
    color: #2d7650;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.pcd-contact-heading h3 {
    margin-bottom: 15px;
    color: #17251f;
    font-size: 50px;
    line-height: 1.08;
    font-weight: 800;
}

.pcd-contact-heading h3 span {
    color: #2d7650;
}

.pcd-contact-heading p {
    margin: 0;
    color: #7c8681;
    font-size: 15px;
    line-height: 1.7;
}


/* Form */

.pcd-input-group label {
    display: block;
    margin-bottom: 8px;
    color: #35413b;
    font-size: 16px;
    font-weight: 700;
}

.pcd-input-group .form-control {
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #e2e8e4;
    border-radius: 10px;
    background: #f8faf9;
    color: #1d2923;
    font-size: 14px;
    box-shadow: none;
    transition: 0.3s ease;
}

.pcd-input-group textarea.form-control {
    min-height: 125px;
    resize: none;
}

.pcd-input-group .form-control:focus {
    border-color: #2d7650;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 118, 80, 0.10);
}


/* Submit Button */

.pcd-submit-btn {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: #2d7650;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.pcd-submit-btn:hover {
    background: #205a3c;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(45, 118, 80, 0.25);
}


/* Responsive */

@media (max-width: 991px) {

    .pcd-franchise-section {
        padding: 70px 0;
    }

    .pcd-info-box,
    .pcd-contact-box {
        padding: 45px 35px;
    }

    .pcd-main-title {
        font-size: 38px;
    }

    .pcd-contact-heading h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .pcd-franchise-section {
        padding: 50px 0;
    }

    .pcd-franchise-wrapper {
        border-radius: 18px;
    }

    .pcd-info-box,
    .pcd-contact-box {
        padding: 35px 25px;
    }

    .pcd-main-title {
        font-size: 31px;
    }

    .pcd-contact-heading h3 {
        font-size: 31px;
    }

    .pcd-info-box p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {

    .pcd-info-box,
    .pcd-contact-box {
        padding: 30px 20px;
    }

    .pcd-main-title,
    .pcd-contact-heading h3 {
        font-size: 28px;
    }
}

/* Breadcrumb-css */

.breadcrumb-section {
    background: url(https://novavedic.com/wp-content/uploads/2026/08/bredacrumb.png) rgba(0,0,0,0.5);
    background-color: #2d5669;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 163px 0px 100px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 5px solid #a9cf47;
    background-blend-mode: multiply;
}
	.breadcrumb-section .page-header-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
		text-align:center;
}
@media (max-width: 767px) {
	span.simple-breadcrumb-nav {
    display: none;
}
}
.current-page-title {
    color: #6c7872;
}

.inner-page {
    padding: 70px 0;
}
section.inner-page {
    padding: var(--section-padding);
}

.lema-about-block {
    position: relative;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
    background: #f7fbf9;
    border: 1px solid #dcebe4;
    border-radius: 22px;
    overflow: hidden;
}

.lema-about-content {
    padding: 35px 30px;
}

.lema-about-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lema-about-title > div:last-child span {
    display: block;
    margin-bottom: 3px;
    color: #236854;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.lema-about-title h2 {
    margin: 0;
    padding: 0;
    color: #102b42;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
}

.lema-about-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #236854;
    color: #fff;
    border-radius: 18px;
    font-size: 22px;
}

.lema-about-line {
    width: 55px;
    height: 3px;
    margin: 22px 0;
    background: #236854;
    border-radius: 20px;
}
.lema-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.lema-about-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    background: #e8f4ee;
    color: #236854;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.lema-about-image {
    width: 100%;
/*     height: 380px; */
    overflow: hidden;
    border-radius: 18px;
}

.lema-about-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

@media (max-width: 991px) {
    .lema-about-content {
        padding: 25px 20px;
    }

    .lema-about-image {
        height: 320px;
    }

    .lema-about-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .lema-about-block {
        padding: 10px;
        border-radius: 16px;
    }

    .lema-about-content {
        padding: 20px 10px;
    }

    .lema-about-image {
        height: 280px;
    }

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


/* pcd-page */

.pcd-franchise-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #5f635a;
    line-height: 1.8;
}

.pcd-franchise-page h1,
.pcd-franchise-page h2,
.pcd-franchise-page h3 {
    color: #20251a;
    line-height: 1.3;
}

.pcd-franchise-page h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 0 0 25px;
}

.pcd-franchise-page .section-title {
    position: relative;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 25px;
    padding-bottom: 15px;
}

.pcd-franchise-page .section-title:after {
    content: "";
    width: 55px;
    height: 4px;
    background: #236854;
    border-radius: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.pcd-franchise-page h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 25px 0 12px;
}

.pcd-franchise-page p {
    font-size: 16px;
    margin: 0 0 18px;
}

.pcd-hero {
    width: 100%;
    background: #f4f7e9;
    border-radius: 20px;
    padding: 55px;
    margin-bottom: 30px;
    border-left: 6px solid #236854;
}
.pcd-content-box {
    width: 100%;
    background: #fff;
    border: 1px solid #e7e9df;
    border-radius: 20px;
    padding: 45px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(32, 37, 26, 0.05);
}
.pcd-franchise-page ul {
    list-style: circle;
}
.faq-item h3 {
    padding-bottom: 10px;
}
.pcd-feature {
    padding: 5px 0 12px 20px;
    border-left: 3px solid #236854;
    margin: 25px 0;
}

.pcd-feature h3 {
    margin-top: 0;
}

.pcd-list {
    margin: 15px 0 22px;
    padding-left: 22px;
}

.pcd-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.pcd-list li::marker {
    color: #236854;
}

.pcd-steps {
    margin: 20px 0 25px;
    padding-left: 25px;
}

.pcd-steps li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.pcd-steps li::marker {
    color: #742b75;
    font-weight: 700;
}

.pcd-highlight {
    background: #f4f7e9;
    border: 0;
}

.pcd-inner-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-top: 20px;
}

.pcd-inner-item h3 {
    margin-top: 0;
}

.pcd-faq .faq-item {
    padding: 20px 25px;
    margin-top: 12px;
    background: #f4f7e9;
    border-radius: 12px;
    border-left: 4px solid #236854;
}

.pcd-faq .faq-item h3 {
    margin: 0;
    font-size: 18px;
}
.pcd-cta {
    width: 100%;
    background: #1f4f45;
    color: #fff;
    padding: 50px;
    border-radius: 20px;
}

.pcd-cta .section-title,
.pcd-cta p {
    color: #fff;
}

.pcd-cta .section-title:after {
    background: #2fbbe4;
}

.pcd-cta p {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .pcd-franchise-page h1 {
        font-size: 36px;
    }

    .pcd-franchise-page .section-title {
        font-size: 29px;
    }

    .pcd-hero,
    .pcd-content-box,
    .pcd-cta {
        padding: 35px;
    }
}

@media (max-width: 575.98px) {
    .pcd-franchise-page {
        padding-bottom: 30px;
    }

    .pcd-franchise-page h1 {
        font-size: 30px;
    }

    .pcd-franchise-page .section-title {
        font-size: 25px;
    }

    .pcd-franchise-page h3 {
        font-size: 18px;
    }

    .pcd-franchise-page p {
        font-size: 15px;
    }

    .pcd-hero,
    .pcd-content-box,
    .pcd-cta {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .pcd-feature {
        padding-left: 15px;
    }

    .pcd-inner-item {
        padding: 20px;
    }
}