/*
Theme Name: Twenty Thirteen Child
Theme URI: https://wordpress.org/themes/twentythirteen/
Template: 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.
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
Version: 4.6.1781265621
Updated: 2026-06-12 12:00:21

*/

:root {
    --primary: #ef4444;
    --primary-dark: #d62828;
    --primary-light: #ff6b6b;
    --secondary: #111827;
    --secondary-light: #374151;
    --accent: #14b8a6;
    --white: #ffffff;
    --light-bg: #fff5f5;
    --section-bg: #f8fafc;
    --heading: #111827;
    --text: #4b5563;
    --border: #e5e7eb;
    --gradient-primary: linear-gradient(135deg, #ef4444, #ff6b6b);
    --gradient-dark: linear-gradient(135deg, #111827, #374151);
    --gradient-light: linear-gradient(135deg, #fff5f5, #ffffff);
    --shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
    --shadow-lg: 0 30px 60px rgba(239, 68, 68, 0.2);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Inter Tight', sans-serif;
    --font-body: 'Inter Tight', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* force strong and bold to max 600 */
strong,
b,
th {
    font-weight: 600 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 600;
    line-height: 1.25;
}

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

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

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: loaderPulse 1.2s ease-in-out infinite;
    position: relative;
}

.loader-pulse::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid rgba(239, 68, 68, 0.3);
    animation: loaderRing 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes loaderRing {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ========== TOP BAR ========== */
.topbar {
    background: var(--secondary);
    padding: 10px 0;
    font-size: 0.875rem;
    z-index: 1050;
    position: relative;
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.topbar a {
    color: #d1d5db;
    transition: var(--transition);
    white-space: nowrap;
}

.topbar a:hover {
    color: var(--primary-light);
}

.topbar .topbar-info span {
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d1d5db;
}

.topbar .topbar-info i {
    color: var(--primary);
    font-size: 0.8rem;
}

.topbar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    margin-left: 6px;
    color: #d1d5db;
    font-size: 0.85rem;
    transition: var(--transition);
}

.topbar .social-icons a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

@media (max-width: 768px) {
    .topbar .topbar-info span {
        margin-right: 8px;
        font-size: 0.75rem;
        gap: 3px;
    }

    .topbar .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        margin-left: 3px;
    }
}

/* ========== STICKY HEADER ========== */
.navbar {
    background: var(--white);
    padding: 12px 0;
    z-index: 1040;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar .logo-heaeder {
    height: 60px;
}

.navbar.sticky-active {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--secondary) !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.navbar-brand .brand-text {
    line-height: 1.1;
}

.navbar-brand .brand-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(239, 68, 68, 0.05);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-franchise {
    background: var(--gradient-primary);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-franchise::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-franchise:hover::before {
    width: 300px;
    height: 300px;
}

.btn-franchise:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(239, 68, 68, 0.4);
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.08);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        text-align: center;
    }

    .btn-franchise {
        display: block;
        text-align: center;
        margin: 8px auto 0;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('assets/images/cardiac-banner.avif') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.78) 40%, rgba(239, 68, 68, 0.35) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-molecule {
    position: absolute;
    opacity: 0.15;
    animation: floatMolecule 8s ease-in-out infinite;
    z-index: 2;
}

.floating-molecule:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 80px;
    animation-delay: 0s;
}

.floating-molecule:nth-child(2) {
    top: 60%;
    right: 8%;
    width: 100px;
    animation-delay: 2s;
}

.floating-molecule:nth-child(3) {
    bottom: 15%;
    left: 30%;
    width: 60px;
    animation-delay: 4s;
}

.floating-molecule:nth-child(4) {
    top: 25%;
    right: 25%;
    width: 70px;
    animation-delay: 6s;
}

.floating-molecule:nth-child(5) {
    top: 70%;
    left: 60%;
    width: 50px;
    animation-delay: 3s;
}

@keyframes floatMolecule {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-25px) rotate(5deg);
    }

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

    75% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    color: #ff6b6b;
    margin-right: 8px;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-heading span {
    color: #ff6b6b;
    position: relative;
}

.hero-heading span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subheading {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.7;
    animation: fadeInUp 1.15s ease forwards;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    animation: fadeInUp 1.3s ease forwards;
}

.hero-features li {
    color: #e5e7eb;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features li i {
    color: #4ade80;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 1.45s ease forwards;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.5);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism Form */
.glass-form-wrapper {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease forwards;
}

.glass-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.glass-form h4 {
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 1.3rem;
}

.glass-form .form-subtitle {
    color: #d1d5db;
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.glass-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.glass-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.glass-form .form-control:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
    color: #fff;
}

.glass-form .btn-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 10px 28px rgba(239, 68, 68, 0.4);
}

.glass-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.5);
}

.form-floating-icons {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.form-floating-icons .fi-icon {
    position: absolute;
    opacity: 0.12;
    color: #ff6b6b;
    font-size: 2rem;
    animation: floatIcon 5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

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

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

    .hero-features {
        grid-template-columns: 1fr;
    }

    .glass-form {
        margin-top: 30px;
        padding: 24px 18px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 1.6rem;
    }

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

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
        width: 100%;
    }
}

/* ========== SECTION COMMON ========== */
.section-padding {
    padding: 90px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 10px;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--heading);
}

.section-header .section-desc {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header .subtitle::before,
    .section-header .subtitle::after {
        width: 16px;
        margin: 0 6px;
    }
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    /* padding: 32px 22px; */
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.45s ease;
    z-index: -1;
    border-radius: var(--radius);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.05);
}

.service-card:hover h4,
.service-card:hover p {
    color: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}
.service-card .content-services {
    padding: 32px 22px;
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
    transition: var(--transition);
}

.service-card .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin: -32px -22px 18px;
    width: calc(100% + 44px);
}

/* ========== ABOUT SECTION ========== */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-wrapper .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -15px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 18px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge .exp-number {
    font-size: 2.2rem;
    display: block;
    line-height: 1;
    font-weight: 600;
}

.experience-badge .exp-text {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.about-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.about-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 576px) {
    .about-list {
        grid-template-columns: 1fr;
    }
}

/* Counter Boxes */
.counter-box {
    text-align: center;
    padding: 22px 14px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid transparent;
}

.counter-box:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.counter-box .counter-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.counter-box .counter-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--heading);
    font-family: var(--font-heading);
}

.counter-box .counter-label {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-cta-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-cta-outline-white:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.pulse-animation {
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== CATEGORY CARDS ========== */
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-card .cat-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .cat-img {
    transform: scale(1.06);
}

.category-card .cat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -28px auto 10px;
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.category-card h5 {
    font-weight: 600;
    font-size: 1rem;
    padding: 0 12px 16px;
    color: var(--heading);
}

/* ========== PRODUCT SLIDER ========== */
.product-slider-wrap {
    position: relative;
    padding: 0 10px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    text-align: center;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card .prod-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-card .prod-info {
    padding: 16px 14px;
}

.product-card .prod-info h6 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.product-card .prod-info p {
    font-size: 0.8rem;
    color: var(--text);
    margin: 0;
}
.swiper-wrapper {
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: 600;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ========== WHY CHOOSE US ========== */
.why-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    padding: 10px 14px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.why-list li:hover {
    border-left-color: var(--primary);
    background: #fff;
    box-shadow: var(--shadow-card);
    transform: translateX(4px);
}

.why-list li i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* ========== KEY FEATURES ========== */
.feature-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 18px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    transition: width 0.4s ease;
}

.feature-box:hover::after {
    width: 70%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-box .feat-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 14px;
    transition: var(--transition);
}

.feature-box:hover .feat-icon {
    transform: scale(1.15);
}

.feature-box h5 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.feature-box .feat-counter {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ========== CONTACT SECTION ========== */
.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-card);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    /* height: 100%; */
}

.contact-info-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.contact-info-card .contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-card .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.contact-form-card .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.btn-contact-submit {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(239, 68, 68, 0.4);
    color: #fff;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary);
    color: #d1d5db;
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}
.footer-logo {
    height: 60px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

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

.footer-links li a {
    color: #9ca3af;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-links li a i {
    color: var(--primary);
    font-size: 0.7rem;
    margin-right: 6px;
}

.footer-newsletter input {
    border-radius: 50px 0 0 50px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.9rem;
}

.footer-newsletter input::placeholder {
    color: #9ca3af;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: none;
}

.footer-newsletter .btn-sub {
    border-radius: 0 50px 50px 0;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-newsletter .btn-sub:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #d1d5db;
    margin-right: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer h5 {
        margin-top: 20px;
    }
}

/* ========== FLOATING BUTTONS ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: bounceWA 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

@keyframes bounceWA {

    0%,
    100% {
        transform: translateY(0);
    }

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

.floating-call-mobile {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 28px rgba(239, 68, 68, 0.4);
    transition: var(--transition);
}

.floating-call-mobile:hover {
    transform: scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-call-mobile {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* ========== SVG DIVIDER ========== */
.svg-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.svg-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.svg-divider-bottom svg {
    transform: rotate(180deg);
}

/* ========== RED GLOW ========== */
.red-glow {
    position: relative;
}

.red-glow::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(20px);
}

.red-glow:hover::before {
    opacity: 0.8;
}

.bg-light-red {
    background: var(--light-bg);
}

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

.pharma-main-form p{
    margin: 0 !important;
}

@media (max-width:767px) {
    .hero-content {
    padding: 120px 10px 80px;
}
.btn-hero-outline {
    font-size: 14px;
}
.swiper.productSwiper {
    padding: 20px 0 40px;
}
}