/*
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.5
Tested up to: 6.9
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
 * ----------------------------------------------------------------------------
 */


html {
    scroll-behavior: smooth;
}

section {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    list-style: 1.8;
    font-size: 16px;
    font-family: 'Red Hat Text', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Red Hat Display', sans-serif;
}

p,
li {
    font-weight: 500;
    color: #4e4b4b;
    font-size: 16px;
    letter-spacing: 0.3px;
}

ol,
ul {
    padding-left: 0;
}

.main-desc {
    color: #cd0000;
}

a {
    text-decoration: none;
}

.process-step {
    background-color: #e4dfcf;
    border-radius: 2px solid red;
    padding: 1.5rem 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
}

.icon-circle {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background-color: black;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.process-icon-lg {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
p.tab-heading {
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    color: #01162c;
}

.nav-link-bottom {
    font-weight: 600;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    background-color: #212529;
}

.nav-link-bottom.active {
    color: #ffffff !important;
    background-color: #c20000 !important;
    /* box-shadow: 0 4px 10px rgba(129, 49, 221, 0.3); */
}



/* .nav-link-bottom.active {
    color: #fff !important;
    background-color: #c20000 !important;
    box-shadow: 0 4px 10px rgb(205 0 0 / 16%);
} */

.product-card-2 {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #c20000;
    margin: 0 20px 20px;
    padding: 25px 25px 25px 15px;
}
.img-box-sticky {
    border-radius: 10px;
    border: 1px solid #01162c;
    padding: 21px 0 0 18px;
    position: sticky;
    top: 45px;
}
section#why-us {
    overflow: unset !important;
}
.box-form.text-center {
    position: sticky;
    top: 0;
    background-color: var(--secondary-navy);
    color: #fff;
    padding: 30px 15px;
}
.img-box-sticky h5 {
    color: #cd0000;
    font-size: 21px;
    font-weight: 700;
}

.product-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 5, 36, 0.1);
}

.card-logo-col {
    padding: 0 0 0 4px;
}

@media (min-width: 768px) {

    .card-logo-col {
        border-right: 1px solid rgba(0, 5, 36, 0.05);
        text-align: left;
    }
}

.card-details-col {
    padding: 5px;
}


.company-logo-box {
    max-width: 200px;
    margin: 0 auto;
}

.company-logo-box img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    border: 1px solid #01162c;
    padding: 0.5rem;
}

.company-title {
    font-weight: 700;
    color: #cd0000;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.turnover {
    margin-top: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}


.btn-group-custom {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}


.btn-call {
    background-color: #01162c;
}

.btn-call:hover {
    background-color: #01162c;
}

a {
    text-decoration: none;
}
.btn-whatsapp{
    background-color: #1db954 !important;
    
}

.btn-whatsapp:hover {
    background-color: transparent !important;
    color: #06ae41 !important;
}

.btn-enquiry {
    background-color: #b60000 !important;
}

.btn-enquiry:hover {
    background-color: transparent !important;
    color: #b60000 !important;
}


img.img-fluid.logo {
    width: 90%;
}

header.header-section {
    padding: 10px 0;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 18px 0px 0px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #000000;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 17px;
    font-weight: 800;
    outline: none;
}

.global_btn {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: #cd0000;
    padding: 5px 23px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 0 4px 10px rgb(105 105 105 / 29%);
}

i.fa-solid.fa-arrow-right.arrow-btn {
    font-size: 19px;
    font-weight: 700;
    line-height: normal;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 11px 21px;
    border-radius: 30px;
    justify-content: center;
    width: 20px;
}

header.header-section {
    padding: 3px 0;
}

a.global_btn {
    color: #fff;
}

.social-icons.d-inline-flex {
    float: right;
}

/* Hero-section */

section.hero-section {
    background-image: url(images/banner-cardiovends.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Banner form wrapper */
.contact-banner-form {
    background: #01162c;
    padding: 35px 20px;
    margin: 20px 0;
    border-radius: 5px;
}
.mobile-responive {
    display: none;
}
.contact-banner-form label {
    display: block;
    color: #f2f2f2 !important;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-banner-form input[type="text"], .contact-banner-form input[type="email"], .contact-banner-form input[type="tel"], .contact-banner-form textarea {
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin: 7px 0 20px 0;
}
.contact-banner-form textarea {
    min-height: 80px;
    height: 80px;
    resize: none;
}
.contact-banner-form input.wpcf7-submit {
    width: 100%;
    background: #d10000;
    color: #fff;
    font-weight: 600;
    padding: 8px 0;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.contact-banner-form input.wpcf7-submit:hover {
    color: #ffffff;
    border: 1px solid #cd0000;
}

.contact-banner-form p {
    margin-bottom: 0;
}

img.img-fluid.about-img {
    border-radius: 10px;
}

.about-card {
    display: flex;
    gap: 13px;
}

h3.about-title {
    font-size: 21px;
    font-weight: 700;
    color: #002a56;
}

.about-icon {
    border-left: 2px solid red;
    padding-left: 11px;
}

.cardiac-icon {
    color: #cd0000;
    font-size: 18px;
    font-weight: 800;
}

.cardiac-icon img {
    width: 25px;
    height: auto;
}

.about-icon {
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 70px;
    width: 68px;
    line-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e2e2;
    border-radius: 6px 0 0 6px;
    padding: 15px 14px 15px 18px;
    border-left: 3px solid #cd0000;
}

h2.about-heading {
    font-size: 44px;
    font-weight: 700;
}

/*Service Section  */
section.services-section {
    padding: 10px 0 55px 0;
}
h6.main-text.main-desc {
    font-size: 23px;
    font-weight: 600;
}

.we-deal-section {
    background: radial-gradient(circle at center, #01162c 0%, #01162c 70%);
    color: #fff;
}

img.img-fluid.we-deal-img {
    width: 40%;
}

.service-box {
    position: relative;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 260px;
    overflow: hidden;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    font-size: 48px;
    color: #e30613;
    margin-bottom: 25px;
    display: block;
}

.service-box h4 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.4;
    /* text-transform: uppercase; */
}

.service-arrow {
    position: absolute;
    top: -40px;
    right: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.service-arrow:hover {
    background: #e30613;
    color: #fff;
}

.service-number {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    z-index: 1;
}

button.view-btn {
    padding: 7px 50px;
    font-size: 19px;
    font-weight: 500;
    border-radius: 2px;
    border: 1px solid #cd0000;
    background: #e9e9e9;
}

button.view-btn a {
    color: #cd0000;
}

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

/* Responsive */
@media (max-width: 767px) {
    .service-box {
        padding: 40px 30px;
    }

    .service-number {
        font-size: 90px;
    }
}

/* Why-choose section */

.why-chhose-section {
    position: relative;
    overflow: hidden;
}

.col-lg-9.why-chhose-card {
    background: #01162c;
    padding: 138px 40px 80px 40px;
    position: relative;
    z-index: 2;
}

.why-choose-img {
    position: absolute;
    right: 0px;
    transform: translateY(-50%);
    max-width: 420px;
    height: auto;
    z-index: 3;
    bottom: -270px;
}

.why-choose p {
    padding-right: 168px;
}

.why-choose-head {
    border-left: 3px solid #cd0000;
    padding: 10px 0;
}

.why-choose-head span {
    font-weight: 600;
    padding: 0 3px 0 18px;
}

/* PCD Section */

.service-card.text-white.text-start.p-md-4.p-1.rounded-4.flex-fill {
    background: #01162c;
    border-radius: 10px !important;
}

section.services-section .icon-box {
    background-color: rgb(255 255 255 / 5%);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 49px;
    font-size: 35px;
    font-weight: 700;
    color: #ca0000;
}

section.services-section .icon-box:hover {
    background-color: #ca0000;
    color: #ffffff;

}

section.services-section .divider {
    width: 55%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, #ffffff 50%, #7e7e7e 50%);
}

.icon-box.mb-3 i {
    font-size: 53px;
}

/* Footer-css */

section.footer-section {
    background: #01162c;
    padding: 53px 0 35px 0;
}

.footer-text strong {
    color: #ffffff;
}

.footer-text a {
    color: #fff;
}

.footer-copy {
    border-top: 1px solid #343a40;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 17px;
}

/* Requirement-section */

.requirement-section {
    padding: 0 0 55px 0;
}
button#pcd-tab {
    background: #cd0007;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
button#pcd-tab:hover {
    background: #01162c;
    color: #fff;
}
button#thirdparty-tab {
    background: #01162c;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
button#thirdparty-tab:hover {
    background: #cd0007;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/* why-us */
section#why-us {
    background: #f8f9fa;
    padding: 50px 0 20px 0;
}
ul.categories li {
    list-style: none;
    padding: 3px 0 0 0;
}
span.third-party {
    font-weight: 700;
    font-size: 23px;
    color: #cd0000;
}

.box-form h5 {
    font-size: 22px;
    font-weight: 600;
    color: #01162c;
}

.box-form.text-center i {
    font-size: 16px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
    gap: 20px;
}

.nav-tabs .nav-link:hover {
    color: #ffffff;
    border: none;
}

button#third-party-tab {
    background: #cd0000 !important;
    color: #fff !important;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.requirement-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

.btn-custom {
    background-color: #01162c;
    color: #ffffff;
    padding: 8px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #b60000;
}

.btn-custom:hover {
    background-color: transparent;
    color: #cd0000;
}

.btn-custom svg {
    margin-left: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #393939;
    font-weight: 600;
}

.feature-list li::before {
    content: "✓";
    color: #cd0000;
    font-weight: bold;
    margin-right: 12px;
}

.contact-why-us-form {
    background: #01162c;
    padding: 26px 10px 7px 10px;
}
.contact-why-us-form label {
    color: #f2f2f2 !important;
    font-size: 17px;
    font-weight: 500;
    padding: 0 0 5px 0;
    text-align: start;
    margin: 5px 0 5px 0;
}
.contact-why-us-form input[type="text"],
.contact-why-us-form input[type="email"],
.contact-why-us-form input[type="tel"],
.contact-why-us-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-why-us-form textarea {
    min-height: 71px;
    height: 100px;
}

.contact-why-us-form input.wpcf7-submit {
    background: #d10000;
    color: #fff;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-why-us-form p {
    margin-bottom: 0;
}

/* Contact-us section */

.contact-us-wrapper {
    background: #01162c;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

img.img-fluid.contact-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-form {
    padding: 40px 36px;
}

.contact-us-form label {
    display: block;
    color: #f2f2f2 !important;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 45px;
}
.contact-us-form input,
.contact-us-form textarea {
    width: 100%;
    padding: 6px;
}

.contact-us-form textarea.wpcf7-textarea {
    min-height: 150px;
    max-height: 230px;
}

.contact-us-form input.wpcf7-submit {
    width: 100%;
    background: red;
    color: #fff;
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0 0 0;
}
/* Product-Segment */

.category-grid-item {
    position: relative;
    display: block;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.category-overlay h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: calc(1rem + 0.4vw);
    line-height: 1.2;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
    color: #fff;
}
section.why-chhose-section {
    padding: 0 0 55px 0;
}

@media (max-width: 768px) {
    .content-heading {
        font-size: 2rem;
    }

    .nav-tabs {
        flex-direction: column;
        gap: 5px;
    }
    section.hero-section {
    background-image: unset !important;
}
div#mega-menu-wrap-primary {
    width: 50px !important;
    float: right !important;
}
section#why-us {
    background: #f8f9fa !important;
    padding: 0px 0 30px 0 !important;
}
.service-card.text-white.text-start.p-md-4.p-1.rounded-4.flex-fill {
    margin: 0 0 20px 0 !important;
    padding: 15px 15px 10px 15px !important;
}
.mobile-responive {
    display: block !important;
}
.why-choose-img {
    position: unset !important;
    max-width: 100% !important;
    height: auto !important;

}
.contact-us-form input.wpcf7-submit {
    margin: 0 0 0 0;
}
.contact-us-form label {
    margin-bottom: 26px;
}
.col-lg-9.why-chhose-card {
    background: #01162c !important;
    padding: 60px 20px 50px 20px !important;
    position: relative !important;
    z-index: 2 !important;
}
.why-choose p {
    padding-right: 20px !important;
}
.why-choose-img {
    position: unset !important;
    transform: unset !important;
}
.col-lg-4.position-relative {
    top: 29px !important;
}
section.Cardiac-section .col-lg-5 {
    margin: 40px 0 30px 0;
}
section.Cardiac-section .col-lg-5 {
    margin: 40px 0 30px 0 !important;
}
section.footer-section {
    margin: 60px 0 0 0 !important;s
}
h2.about-heading {
    font-size: 36px;
}
.about-icon {
    width: 85px;
}
.company-title {
    margin: 12px 0 3px 0;
}
.service-arrow {
    top: 7px;
    right: 31px;
}
.why-choose-head {
    padding: 10px 19px;
}
.img-box-sticky {
    margin: 0 18px 0 18px;
}
.why-choose-head span{
    padding: 0;
}
}


/* Quick Menu */

#cardiovends-mobile-quick-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #cd0007;
    /* border-top: 2px solid #ffffff; */
    z-index: 9999;
}

#cardiovends-mobile-quick-menu a {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    font-size: 12px;
    color: #ececec;
    font-weight: 600;
    text-decoration: none;
    border-right: 1px solid #01162c;
    transition: background-color 0.3s ease, color 0.3s ease;
}


#cardiovends-mobile-quick-menu a:last-child {
    border-right: none;
}

#cardiovends-mobile-quick-menu i {
    font-size: 18px;
    margin-bottom: 2px;
}


#cardiovends-mobile-quick-menu a:hover {
    background-color: #cd0000;
    color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #d10000;
    color: #fff;
    text-align: center;
    padding: 11px 0;
    border-radius: 5px;
    font-weight: 600;
}

  .thankyou-box {
        background: #ffffff;
        padding: 40px 50px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        max-width: 420px;
        width: 90%;
    }
.card {
    padding: 120px 0;
    margin: 77px 0 0 0;
}
 h1.thankyou-page-head {
    font-size: 35px;
    padding: 0 0 3px 0;
    color: #cd0000;
    font-weight: 700;
}
    .icon {
        font-size: 60px;
        color: #a2c83b;
        margin-bottom: 15px;
    }
.wpcf7-response-output {
	color: #fff !important;
}