/*
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:#007157;
    --secondary-color:#F57C00;
    --heading-color:#1F2937;
    --text-color:#6B7280;
    --white-color:#ffffff;
    --bg-color:#F8FBFF;
    --light-bg-color:#F8FBFF;
    --dark-color:#F57C00;
    --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);
    --gredient-bg: linear-gradient(135deg, #f5fffb, #edf8ff);

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

body{
    font-family:var(--body-font);
    color:var(--text-color);
    background:var(--white-color);
    overflow-x:hidden;
}
p{
    color: var(--text-color);
    line-height: 28px;
    transition: .35s;
}
section{
    padding:var(--section-padding);
}

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

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

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

.section-title {
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 42px;
    margin-bottom: 18px;
}

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

@media(max-width:991px){

    section{
        padding:var(--responsive-padding);
    }

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

}

@media(max-width:767px){

   .section-title {
    font-size: 25px;
    line-height: 36px;
}
}

/* Buttons */

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


/* Pharma Manufacturing Partner-section */
.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(0,113,87,.08);
    color:var(--primary-color);
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}
img.img-fluid.about-img {
    border-radius: 25px;
    margin: 0 0 20px 0;
}
.feature-list {
    margin-bottom: 35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:var(--white-color);
    padding:18px;
    border-radius:15px;
    box-shadow:var(--card-shadow);
    transition:var(--transition);
    height:100%;
}

.feature-item:hover{
    transform:translateY(-6px);
}

.feature-item span{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(0,113,87,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-color);
    font-size:18px;
}

.feature-item h6{
    margin:0;
    color:var(--heading-color);
    font-weight:600;
    line-height: 23px;
}

.section-btn{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.section-btn .btn{
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
}

.btn-primary{
    background:var(--primary-color);
    border:none;
}

.btn-primary:hover{
    background:var(--secondary-color);
}

.btn-outline{
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    background:transparent;
}

.btn-outline:hover{
    background:var(--primary-color);
    color:#fff;
}

.company-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:var(--card-shadow);
}

.info-box {
    background: linear-gradient(135deg,#f8fffd,#eefbf8);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    background: var(--gredient-bg);
}

.info-box:hover{
    transform:translateY(-6px);
}

.info-box h3{
    color:var(--primary-color);
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.info-box p{
    margin:0;
    color:var(--text-color);
}

.highlight-box{
    margin-top:30px;
    padding:30px;
    border-radius:20px;
    background:var(--gradient-primary);
    color:#fff;
}

.highlight-box h4{
    font-weight:700;
    margin-bottom:15px;
}

.highlight-box p{
    margin:0;
    color:rgba(255,255,255,.9);
}

@media(max-width:991px){

    .company-card{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .company-card{
        padding:20px;
    }

    .section-btn{
        flex-direction:column;
    }

    .section-btn .btn{
        width:100%;
    }

}

/* Hero-section */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(90deg, rgb(0 113 87), rgb(1 103 80 / 61%)), url(https://toppharmapcd.com/wp-content/uploads/2026/07/pv-banner.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 0;
}
.hero-title {
    font-size: 47px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.15;
    margin: 20px 0 13px 0;
}
section.hero-section .theme-btn {
    background: #effffb;
    color: #047157;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
section.hero-section .theme-btn-outline {
    border: 2px solid #ffffffb8;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.hero-title span{
    color:var(--primary-color);
}

.hero-text{
    font-size:17px;
    color:var(--text-color);
    line-height:1.9;
    margin-bottom:35px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:10px 20px;
    border-radius:50px;
    color:var(--primary-color);
    font-weight:600;
    box-shadow:var(--card-shadow);
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.theme-btn{
    background:var(--primary-color);
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.theme-btn:hover{
    background:var(--secondary-color);
    color:#fff;
}

.theme-btn-outline{
    border:2px solid var(--primary-color);
    color:var(--primary-color);
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.theme-btn-outline:hover{
    background:var(--primary-color);
    color:#fff;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ffffff;
}

.hero-feature i {
    color: #ffffff;
}
.hero-form{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    position:relative;
    z-index:2;
}

.form-head{
    text-align:center;
    margin-bottom:25px;
}

.form-head h3{
    color:var(--heading-color);
    font-size:28px;
    margin-bottom:10px;
}

.form-head p{
    color:var(--text-color);
    margin:0;
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
    border:1px solid var(--border-color);
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary-color);
    box-shadow:none;
}

.hero-submit{
    width:100%;
    border:none;
    background:var(--secondary-color);
    color:#fff;
    padding:16px;
    border-radius:12px;
    font-weight:700;
    transition:var(--transition);
}

.hero-submit:hover{
    background:var(--primary-color);
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    z-index:0;
}

.shape-1{
    width:320px;
    height:320px;
    background:rgba(0,113,87,.06);
    top:-120px;
    left:-100px;
}

.shape-2{
    width:260px;
    height:260px;
    background:rgba(245,124,0,.08);
    right:-100px;
    bottom:-100px;
}

@media(max-width:991px){

.hero-section{
padding:70px 0;
}

.hero-title{
font-size:42px;
}

.hero-form{
margin-top:20px;
}

}

@media(max-width:767px){

.hero-title{
font-size:34px;
}

.hero-btns a{
width:100%;
text-align:center;
}

.hero-form{
padding:25px;
}

}

 /* Product-category-section  */

/* .product-category-section{
    background:
        var(--gradient-primary),
        url("http://localhost/pharmavends/wp-content/uploads/2026/07/bg-service-section2.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

.product-category-section {
    background: linear-gradient(90deg, rgb(3 58 100 / 77%), rgb(10 111 133 / 84%)), url(https://toppharmapcd.com/wp-content/uploads/2026/07/bg-service-section2-1.jpg);
    background-size: cover;
    background-position: center center;
    color: #fff;
    position: relative;
}

section#product-category span.section-tag.text-white{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    border-radius:50px;
    background: rgb(0 113 87 / 50%) !important;
    color:#ffffff !important;
    border-radius: 50px;
    margin-bottom:20px;
    font-weight:600;
    letter-spacing:.5px;
}
.product-category-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(24,210,194,.08);
    top:-220px;
    left:-180px;
    filter:blur(20px);
}

.product-category-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(245,124,0,.08);
    right:-180px;
    bottom:-180px;
    filter:blur(20px);
}

.product-category-section .container{
    position:relative;
    z-index:2;
}

.section-heading{
    max-width:850px;
    margin:0 auto 40px;
}

.product-category-section .section-title{
    color:#fff;
    margin-bottom:18px;
}

.product-category-section .section-subheading{
    color:rgba(255,255,255,.75);
}

.category-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    padding:35px;
    min-height:330px;
    transition:.45s;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
}

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

.category-card:hover,
.active-card{
    transform:translateY(-10px);
    background:var(--gradient-primary);
}

.category-card:hover::before,
.active-card::before{
    height:100%;
    opacity:.12;
}

.card-content{
    position:relative;
    z-index:5;
}

.category-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(0,113,87,.08);
    color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
    transition:.4s;
}

.category-card:hover .category-icon,
.active-card .category-icon{
    background:#fff;
    color:var(--primary-color);
    transform:rotate(10deg) scale(1.08);
}

.category-card h4{
    font-size:24px;
    color:var(--heading-color);
    margin-bottom:15px;
    transition:.35s;
}

.category-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary-color);
    font-weight:600;
    transition:.35s;
}

.category-card:hover h4,
.category-card:hover p,
.category-card:hover a,
.active-card h4,
.active-card p,
.active-card a{
    color:#fff;
}

.category-card a i{
    transition:.35s;
}

.category-card:hover a i{
    transform:translateX(5px);
}

.card-image{
    position:absolute;
    right:-30px;
    bottom:-20px;
    width:180px;
    opacity:0;
    transform:translateY(40px);
    transition:.45s;
    pointer-events:none;
}

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

.category-card:hover .card-image,
.active-card .card-image{
    opacity:1;
    transform:translateY(0);
}

.category-card:hover .card-image img{
    animation:floatImage 3s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

@media(max-width:991px){

.category-card{
min-height:290px;
padding:30px;
}

.card-image{
width:140px;
}

}

@media(max-width:767px){

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

.category-card{
min-height:auto;
padding:25px;
}

.card-image{
position:relative;
right:0;
bottom:0;
width:120px;
margin-left:auto;
margin-top:20px;
opacity:1;
transform:none;
}

}


/* Client-list-section */

.companies-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f5fffb, #edf8ff);
}
.company-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
    border:1px solid #edf1f7;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.company-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

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

.company-logo{
    width:90px;
    height:90px;
    border-radius:15px;
    background:#fff;
    border:1px solid #eee;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.company-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.company-info h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:8px;
}

.company-tag{
    display:inline-block;
    background: rgba(0, 113, 87, .08);
    color: var(--primary-color);
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.company-actions{
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

.btn-action{
    padding:12px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#20b659;
    color:#fff;
}

.btn-inquiry{
    background:#0056b3;
    color:#fff;
}

.btn-inquiry:hover{
    background:#003b7d;
    color:#fff;
}

.sidebar-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    position: sticky;
    top: 50px;
    color: var(--primary-color);
}

.sidebar-form h4{
    margin-bottom:25px;
    font-size:28px;
        font-weight: 600;
}

@media(max-width:991px){

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

.company-header{
flex-direction:column;
text-align:center;
}

.company-actions{
justify-content:center;
}

}

/* Process-section */

.why-section{
    background:#fff;
}


.why-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid #bce9ff;
    color:#11b7ed;
    padding:6px 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}


.why-content {
    margin-top: 10px;
}

.why-item{
    margin-bottom:45px;
}


.why-icon{
    color:#00b8f0;
    font-size:34px;
    margin-bottom:15px;
}


.left-item{
    text-align:right;
}


.left-item .why-icon{
    margin-left:auto;
}


.right-item{
    text-align:left;
}

.why-item h4{
    font-size:18px;
    font-weight:700;
    color:#111b45;
    margin-bottom:10px;
}

.why-image{
    text-align:center;
    position:relative;
}

.why-image img {
    width: 370px;
    height: 520px;
    object-fit: cover;
    border-radius: 170px;
    margin: auto;
}
.process-area{
    margin-top:80px;
}

.process-box{
    background:#fff;
    padding:25px 15px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;
    transition:.3s;
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-box span{
    width:45px;
    height:45px;
    background:var(--primary-color);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-weight:700;
    margin-bottom:15px;
}


.process-box h4{
    font-size:15px;
    color:#1F2937;
    line-height:1.5;
}



@media(max-width:991px){

    .left-item,
    .right-item{
        text-align:center;
    }


    .left-item .why-icon{
        margin:auto;
    }


    .why-image img{
        height:450px;
        width:320px;
    }

}


@media(max-width:767px){

    .why-image img{
        width:280px;
        height:380px;
    }

}

/* Our process */

/* .process-section {
    background: var(--gredient-bg);
    background: linear-gradient(90deg, rgb(137 115 68), rgb(149 123 63 / 81%)), url(http://localhost/pharmavends/wp-content/uploads/2026/07/process-bg.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 0;
} */
.process-section {
    background: var(--gredient-bg);
    background: linear-gradient(90deg, rgb(3 58 100 / 77%), rgb(10 111 133 / 84%)), url(http://localhost/pharmavends/wp-content/uploads/2026/07/process-bg.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 0;
}
span.section-tag.dark-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 18px;
    background: rgb(0 113 87 / 71%) !important;
    color: #ffffff !important;
}
.process-card h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111b45;
    margin-bottom: 10px;
}
.process-wrapper{
    position:relative;
}

.process-card{
    position:relative;
    background:var(--white-color);
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    box-shadow:var(--card-shadow);
    transition:var(--transition);
    height:100%;
    overflow:hidden;
}

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

.process-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--primary-color);
}

.process-number{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--secondary-color);
    color:var(--white-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    margin:0 auto 20px;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,113,87,.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
    font-weight: 600;
}
.process-card:hover .process-icon{
    background:var(--primary-color);
    color:var(--white-color);
}

@media(max-width:991px){

    .process-card{
        padding:30px 18px;
    }

}

@media(max-width:767px){

    .process-card{
        padding:25px 15px;
    }

    .process-icon{
        width:60px;
        height:60px;
        font-size:26px;
    }

    .process-card h5{
        font-size:15px;
    }

}

/* Services-section */

.services-section {
    background: linear-gradient(135deg, #f5fffb, #edf8ff);
}
.services-image{
    overflow:hidden;
    border-radius:30px;
}

.services-image img{
    width:100%;
    border-radius:30px;
}

.service-item{
    display:flex;
    gap:22px;
    padding:0 0 28px;
    margin-bottom:28px;
    border-bottom:1px solid var(--border-color);
}

.service-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.service-number{
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:50%;
    background:rgba(0,113,87,.08);
    color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    font-weight:700;
}

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

.service-content p{
    margin:0;
    color:var(--text-color);
    line-height:1.8;
}

@media(max-width:991px){

    .services-image{
        margin-bottom:20px;
    }

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

}

@media(max-width:767px){

    .service-item{
        gap:15px;
    }

    .service-number{
        width:48px;
        height:48px;
        font-size:16px;
    }

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

}

/* Testimonials */

.testimonial-wrapper {
    background: #fff;
    border-radius: 25px;
    padding: 40px 24px;
    box-shadow: var(--card-shadow);
}

.testimonial-content h3{
    font-size:34px;
    color:var(--heading-color);
    font-weight:700;
    margin:20px 0;
    line-height:1.4;
}

.review-label{
    display:inline-block;
    padding:8px 18px;
    background:rgba(0,113,87,.08);
    color:var(--primary-color);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.quote-icon{
    width:80px;
    height:80px;
    background:var(--primary-color);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin:25px 0;
}

.testimonial-content p{
    line-height:1.9;
    margin-bottom:35px;
}

.client-review {
    padding: 70px 35px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5fffb, #edf8ff);
}
.client-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.client-top img {
    width: 65px !important;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.client-top h5{
    margin:0;
    color:var(--heading-color);
    font-weight:700;
}

.client-top span{
    font-size:14px;
    color:var(--primary-color);
}

.stars{
    color:#FDBA12;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.client-review p{
    line-height:1.8;
    margin:0;
}

.testimonial-slider .owl-dots{
    margin-top:25px;
}

.testimonial-slider .owl-dot span{
    width:12px;
    height:12px;
    background:#cfd8dc;
}

.testimonial-slider .owl-dot.active span{
    background:var(--primary-color);
}

@media(max-width:991px){

    .testimonial-wrapper{
        padding:30px;
    }

    .testimonial-content{
        margin-bottom:40px;
    }

    .testimonial-content h3{
        font-size:28px;
    }

}

@media(max-width:767px){

    .testimonial-wrapper{
        padding:20px;
    }

    .testimonial-content h3{
        font-size:24px;
    }

}

/* Faq-section */

.faq-section {
    background: var(--bg-color);
    background: linear-gradient(90deg, rgb(3 58 100 / 77%), rgb(10 111 133 / 84%)), url(http://localhost/pharmavends/wp-content/uploads/2026/07/bg-service-section2-1.jpg);
    background-size: cover;
    background-position: center center;
    color: #fff;
}

.faq-heading{
    max-width:700px;
    margin:0 auto 50px;
}

.faq-accordion .accordion-item{
    border:1px solid var(--border-color);
    border-radius:16px;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:var(--card-shadow);
}

.faq-accordion .accordion-button{
    background:var(--white-color);
    color:var(--heading-color);
    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:var(--primary-color);
    color:var(--white-color);
}

.faq-accordion .accordion-button:focus{
    box-shadow:none;
}

.faq-accordion .accordion-body{
    padding:22px 25px;
    color:var(--text-color);
    line-height:1.8;
    font-size:15px;
    background:var(--white-color);
}

.faq-accordion .accordion-button::after{
    transition:.3s;
}

@media(max-width:767px){

    .faq-accordion .accordion-button{
        font-size:16px;
        padding:18px;
    }

    .faq-accordion .accordion-body{
        padding:18px;
    }

}
img.img-fluid.faq-img {
    border-radius: 18px;
}

/* Contact us */

.contact-section{
     background: linear-gradient(135deg, #f5fffb, #edf8ff);
}

.contact-heading{
    max-width:700px;
    margin:0 auto 60px;
}

.contact-wrapper{
    background:var(--white-color);
    border-radius:25px;
    overflow:hidden;
    box-shadow:var(--card-shadow);
}

.contact-info{
    background:var(--gradient-primary);
    color:var(--white-color);
    padding:60px 45px;
    height:100%;
}

.contact-info h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-info p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    margin-bottom:40px;
}

.contact-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-item span{
    display:block;
    font-size:14px;
    color:rgba(255,255,255,.75);
    margin-bottom:5px;
}

.contact-item h5{
    color:#fff;
    font-size:18px;
    margin:0;
    line-height:1.6;
}

.contact-form-box{
    padding:60px;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
    height:55px;
    border:1px solid var(--border-color);
    border-radius:12px;
    box-shadow:none;
    padding:12px 18px;
}

.contact-form-box textarea.form-control{
    height:140px;
    resize:none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
    border-color:var(--primary-color);
    box-shadow:none;
}

@media(max-width:991px){

    .contact-info{
        padding:40px 30px;
    }

    .contact-form-box{
        padding:40px 30px;
    }

}

@media(max-width:767px){

    .contact-info h3{
        font-size:28px;
    }

    .contact-form-box{
        padding:30px 20px;
    }

}
input.wpcf7-form-control.wpcf7-submit.has-spinner.primary-btn {
    width: 100%;
    border: 1px solid;
}
.contact-info-box {
    color: var(--white-color);
    padding: 53px 0;
    height: 100%;
}
.modal-header h3 {
    color: var(--primary-color);
    font-weight: 700;
}

ul#mega-menu-primary li a {
    font-weight: 600 !important;
    font-size: 17px !important;
    font-family: var(--body-font) !important;
}
/* Ready to grow */

.final-cta-section{
    padding: var(--section-padding);
}

.final-cta-wrapper{
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 70px 60px;
    box-shadow: 0 30px 60px rgba(1,44,91,.15);
    z-index: 1;
}

.final-cta-wrapper::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.final-cta-wrapper::after{
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
    left: -80px;
    bottom: -100px;
}

.final-cta-wrapper .section-tag{
    background: rgba(255,255,255,.12);
    color: var(--white-color);
    border: 1px solid rgba(255,255,255,.15);
}

.final-cta-wrapper .section-title{
    color: var(--white-color);
    margin: 20px 0;
}

.final-cta-wrapper .section-subheading{
    color: rgba(255,255,255,.85);
    max-width: 700px;
    margin-bottom: 35px;
}

.cta-features{
    display: flex;
    flex-wrap: wrap;
    gap: 18px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #081138;
    font-weight: 500;
    background: linear-gradient(135deg, #f5fffb, #edf8ff);
}
/* .feature-item i{
    color: #FFD54F;
    font-size: 18px;
} */

.cta-button-group{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-button-group .theme-btn{
    width: 100%;
    text-align: center;
}

.cta-button-group .theme-btn-outline{
    width: 100%;
    text-align: center;
    border: 2px solid rgba(255,255,255,.3);
    color: var(--white-color);
    background: transparent;
}

.cta-button-group .theme-btn-outline:hover{
    background: var(--white-color);
    color: var(--primary-color);
}

@media(max-width:991px){

.final-cta-wrapper{
padding:50px 35px;
text-align:center;
}

.cta-features{
justify-content:center;
margin-bottom:35px;
}

.cta-button-group{
margin-top:20px;
}

}

@media(max-width:767px){

.final-cta-wrapper{
padding:40px 25px;
}

.cta-features{
flex-direction:column;
align-items:flex-start;
}

}


    /* Pharma PCD Franchise */

.pcd-franchise-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5fffb, #edf8ff);
}

.franchise-image{
    position: relative;
    text-align: center;
}

.franchise-image img{
    width: 100%;
    max-width: 470px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.franchise-image:hover img{
    transform: translateY(-8px);
}

.floating-card{
    position: absolute;
    background: var(--white-color);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i{
    width: 45px;
    height: 45px;
    background: rgba(0,113,87,.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-card span{
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
}

.card-one{
    top: 40px;
    left: -30px;
}

.card-two{
    right: -30px;
    bottom: 60px;
}

@keyframes floatCard{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0);
    }

}

.franchise-content{
    padding-left: 20px;
}

/* Feature Cards */

.feature-box{
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}
.business-list span i {
    color: var(--primary-color);
}
.business-list span i:hover {
    color: #fff;
}
.feature-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    color: #fff;
    height:4px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.feature-box:hover{
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.feature-box:hover::before{
    width:100%;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background: rgba(0,113,87,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.feature-icon i{
    color: var(--primary-color);
    font-size:24px;
}

.feature-box h5{
    font-size:22px;
    font-weight:700;
    color: var(--heading-color);
    margin-bottom:12px;
}

.feature-box p{
    color: var(--text-color);
    margin:0;
    line-height:1.8;
}

/* Business Box */

.business-box{
    position: relative;
    margin-top:40px;
    padding:40px;
    background: var(--white-color);
    border:1px solid var(--border-color);
    border-radius:24px;
    box-shadow: var(--card-shadow);
    overflow:hidden;
}

.business-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background: var(--gradient-primary);
}

.business-box h4{
    font-size:32px;
    font-weight:700;
    color:var(--heading-color);
    margin-bottom:25px;
    position:relative;
    padding-left:18px;
}

.business-box h4::before{
    content:"";
    position:absolute;
    left:0;
    top:7px;
    width:6px;
    height:28px;
    border-radius:30px;
    background:var(--secondary-color);
}

.business-list{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    align-items:center;
}

.business-list span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    background:var(--light-bg-color);
    color:var(--heading-color);
    border:1px solid var(--border-color);
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}
a.btn-action.call-btn {
    background: #25d366;
    color: #fff;
}
/* .business-list span::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    color:var(--primary-color);
} */

.business-list span:hover{
    background:var(--primary-color);
    color:var(--white-color);
    border-color:var(--primary-color);
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,113,87,.18);
}

.business-list span:hover::before{
    color:var(--white-color);
}

.business-box .theme-btn{
    margin-top:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
}

.business-box .theme-btn i{
    margin-left:10px;
    transition:var(--transition);
}

.business-box .theme-btn:hover i{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:991px){

.franchise-content{
    padding-left:0;
}

.franchise-image{
    margin-bottom:50px;
}

.card-one{
    left:0;
}

.card-two{
    right:0;
}

.business-box{
    padding:30px;
}

.business-box h4{
    font-size:28px;
}

}

@media(max-width:767px){

.feature-box{
    padding:22px;
}

.feature-box h5{
    font-size:20px;
}

.floating-card{
    display:none;
}

.business-box{
    padding:25px;
    text-align:center;
}

.business-box h4{
    font-size:24px;
    padding-left:0;
}

.business-box h4::before{
    display:none;
}

.business-list{
    justify-content:center;
    flex-direction:column;
}

.business-list span{
    width:100%;
    justify-content:center;
}

.business-box .theme-btn{
    width:100%;
}

}
img.img-fluid.growth-img {
    border-radius: 15px;
    margin: 0 0 28px 0;
}

/* Footer-section */

.main-footer {
    padding: 60px 0 25px;
    color: #fff;
    background: linear-gradient(135deg, #033460, #007157);
}

.footer-logo {
    max-width: 190px;
    margin-bottom: 20px;
    border-radius: 11px;
}

.footer-widget p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

.footer-widget h4{
    color:#fff;
    font-size:24px;
    margin-bottom:28px;
    position:relative;
}

.footer-widget h4::after{
    content:"";
    width:55px;
    height:3px;
    background:var(--secondary-color);
    position:absolute;
    left:0;
    bottom:-10px;
}

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

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

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

.footer-widget ul li a:hover{
    color:var(--secondary-color);
    padding-left:8px;
}

.footer-contact li{
    display:flex;
    gap:15px;
    color:rgba(255,255,255,.75);
}

.footer-contact i{
    color:var(--secondary-color);
    margin-top:5px;
    min-width:18px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--secondary-color);
    transform:translateY(-5px);
}

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

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.6);
}

.footer-bottom a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    margin:0 8px;
}

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

@media(max-width:991px){

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

.footer-widget h4::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-contact li{
    justify-content:center;
}

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

.footer-bottom .text-md-end{
    margin-top:15px;
}

}

@media(max-width:767px){

.main-footer{
    padding:60px 0 20px;
}
.footer-widget h4::after {
    left: 29px !important;
}
.footer-bottom {
    margin-top: 20px;
}
.footer-widget{
    margin-bottom:15px;
}

}

/* Our-products */

.products-section {
    padding: var(--section-padding);
    background: linear-gradient(90deg, rgb(3 58 100 / 77%), rgb(10 111 133 / 84%)), url(http://localhost/pharmavends/wp-content/uploads/2026/07/bg-service-section2-1.jpg);
    background-size: cover;
    background-position: center center;
    color: #fff;
}
.product-carousel{
    margin-top:50px;
}

.product-card{
    background: var(--white-color);
    border:1px solid var(--border-color);
    border-radius:20px;
    padding:20px;
    transition:var(--transition);
    box-shadow:var(--card-shadow);
    overflow:hidden;
}

.product-card img{
    width:100%;
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-color);
}

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

.product-carousel .owl-stage{
    display:flex;
    align-items:center;
}

.product-carousel .owl-item{
    padding:10px;
}


.product-carousel .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#d8d8d8;
    border-radius:50%;
    transition:var(--transition);
}

.product-carousel .owl-dot.active span{
    width:32px;
    border-radius:30px;
    background:var(--primary-color);
}

.product-carousel .owl-nav{
    margin-top:0;
}

.product-carousel .owl-nav button {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    right: -50px;
}

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

.product-carousel .owl-prev{
    left:-55px !important;
}

.product-carousel .owl-next{
    right:-25px;
}

@media(max-width:991px){

.product-carousel .owl-prev{
    left:-10px;
}

.product-carousel .owl-next{
    right:-10px;
}

}

@media(max-width:767px){

.product-card{
    padding:15px;
}

.product-carousel .owl-nav{
    display:none;
}

}

/* Responsive */

@media(max-width:767px){

    #mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    margin: 37px 0 0 0;
}
}
@media only screen and (max-width: 768px) {
    #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
        flex-direction: column;
        flex-wrap: nowrap;
        color: #222;
        background-color: transparent !important;
        padding: 0px;
        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 {
        color: black !important;
        background-color: transparent !important;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
        border: 0;
        margin: 0;
        line-height: 40px;
        height: 40px;
        padding: 0 10px;
        background: transparent;
        text-align: left;
        color: black !important;
        font-size: 14px;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
        color: white;
        background-color: transparent !important;
    }


.mega-menu-toggle {
    float: right;
}
.hero-section {
    padding: 40px 0;
}
.hero-section {
        background: linear-gradient(90deg, rgb(0 113 87), rgb(3 55 98 / 68%)), url(http://localhost/pharmavends/wp-content/uploads/2026/07/pv-banner.png);
}
.hero-form {
    background: #04476ca3;
}
.why-item {
    margin-bottom: 28px;
}
section#final-cta .feature-item {
    width: 100%;
}
header.header-section {
    padding: 7px 0;
}

}
.hero-form {
    background: #016750;
}

img.img-fluid.logo {
    width: 87%;
}
.menu-toggler{

    border:none;
    background:none;
    font-size:30px;
    color:#007157;

}


.mobile-overlay{

    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    z-index:9998;
    visibility:hidden;
    opacity:0;
    transition:.3s;

}

.mobile-overlay.active{

    visibility:visible;
    opacity:1;

}


.mobile-drawer {
    position: fixed;
    top: 44px;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .4s;
    overflow-y: auto;
    padding: 20px;
}

.mobile-drawer.active{

    left:0;

}

.drawer-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;

}

.close-menu{

    border:none;
    background:none;
    font-size:28px;

}

.mobile-menu{

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

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu li a{

    display:block;
    padding:15px 0;
    color:#222;
    font-size:18px;
    font-weight:600;
    text-decoration:none;

}

.mobile-menu li a:hover{

    color:#007157;

}
ul#mega-menu-primary li a {
    font-weight: 500 !important;
}





