:root {
    --primary-blue: #1a2980;
    --primary-blue-light: #2e3f9e;
    --primary-green: #2bb673;
    --primary-green-dark: #22a064;
    --light-bg: #f0f5ff;
    --dark-text: #1a1a2e;
    --white: #ffffff;
    --gradient-blue: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    --gradient-green: linear-gradient(135deg, #2bb673 0%, #1a9e6a 100%);
    --shadow-sm: 0 2px 8px rgba(26, 41, 128, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 41, 128, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 41, 128, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    height: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #0f1854 0%, #1a2980 100%);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.marquee-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
    color: #a8c4ff;
}

.marquee-content span {
    color: var(--white);
    margin-right: 40px;
}

.marquee-content .fa-bolt {
    color: var(--primary-green);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.top-bar-right a.phone-link {
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.top-bar-right a.phone-link i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* CTA BUTTONS */
.btn-green {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-green:hover {
    background: var(--primary-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 182, 115, 0.35);
}

.btn-blue {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-blue:hover {
    background: var(--primary-blue-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 41, 128, 0.35);
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-blue);
}

/* HEADER */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text .logo-icon {
    width: 80%;
}

.logo-text span.green {
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--dark-text) !important;
    padding: 8px 16px !important;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* HERO */
.hero-section {
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 182, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 208, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 182, 115, 0.15);
    border: 1px solid rgba(43, 182, 115, 0.3);
    color: var(--primary-green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-subtitle {
    color: #b0c4e8;
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-features li {
    color: #d0ddf5;
    font-size: 15px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features li i {
    color: var(--primary-green);
    font-size: 14px;
    width: 22px;
    height: 22px;
    background: rgba(43, 182, 115, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* HERO FORM */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-form-card h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.hero-form-card p {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.hero-form-card .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.hero-form-card .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.1);
}

.hero-form-card .btn-green {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 15px;
}

/* MARQUEE BANNERS */
.marquee-banners {
    background: var(--primary-green);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-banners-content {
    display: flex;
    animation: bannerScroll 15s linear infinite;
    white-space: nowrap;
}

.marquee-banners-content .banner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-right: 50px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-banners-content .banner-item i {
    font-size: 12px;
    opacity: 0.7;
}

@keyframes bannerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTION STYLES */
.section-pad {
    padding: 70px 0;
}

.section-title {
    font-size: clamp(24px, 4vw, 38px);
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.section-title .highlight {
    color: var(--primary-green);
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 45px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 4px;
    margin: 12px auto 15px;
}

/* CATEGORIES */
.categories-section {
    background: linear-gradient(135deg, rgba(240, 245, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=1200&q=80') center/cover;
    background-attachment: fixed;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf5;
    cursor: pointer;
    margin: 10px 5px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.category-card .cat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.cat-icon.tablets {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.cat-icon.capsules {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.cat-icon.injections {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c62828;
}

.cat-icon.syrups {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
}

.cat-icon.eyedrops {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    color: #00838f;
}

.cat-icon.ointments {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.cat-icon.respules {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: #283593;
}

.category-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

/* ABOUT */
.about-section {
    background: var(--white);
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-placeholder {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

.about-img-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-img-placeholder span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.about-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-box {
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    border: 1px solid #e2e8f0;
}

.stat-box .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-box .stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

/* WHY CHOOSE */
.why-section {
    background: var(--light-bg);
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf5;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-card .why-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.why-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* PRODUCTS */
.products-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 255, 0.95) 100%), url('https://images.unsplash.com/photo-1631549387374-efb983881890?w=1200&q=80') center/cover;
    background-attachment: fixed;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf5;
    margin: 10px 5px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-img {
    height: 100%;
    color: #fff;
    position: relative;
}

.product-card .product-body {
    padding: 20px;
    text-align: center;
}

.product-card h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* PCD FRANCHISE */
.pcd-section {
    background: linear-gradient(135deg, #0f1854, #1a2980);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pcd-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 182, 115, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.pcd-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.pcd-feature .pcd-icon {
    width: 48px;
    height: 48px;
    background: rgba(43, 182, 115, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.pcd-feature h5 {
    font-size: 16px;
    margin-bottom: 3px;
}

.pcd-feature p {
    font-size: 13px;
    color: #a8b8d8;
    margin: 0;
}

/* PROFIT */
.profit-section {
    background: var(--light-bg);
}

.profit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf5;
    height: 100%;
}

.profit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.profit-card .profit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(43, 182, 115, 0.1), rgba(26, 41, 128, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary-green);
}

.profit-card h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.profit-card p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* CONTACT */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: linear-gradient(135deg, #0f1854, #1a2980);
    border-radius: var(--radius);
    padding: 35px 30px;
    color: #fff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .ci-icon {
    width: 45px;
    height: 45px;
    background: rgba(43, 182, 115, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 13px;
    color: #a8b8d8;
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-card .form-control {
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    font-size: 14px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(43, 182, 115, 0.1);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0a1040, #0f1854);
    color: #fff;
    padding: 50px 0 0;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    /* width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; */
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: #a8b8d8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #6a7ba8;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.4);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* TOAST */
.toast-msg {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-green);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transition: transform 0.4s;
    box-shadow: var(--shadow-md);
}

.toast-msg.show {
    transform: translateX(-50%) translateY(0);
}

/* OWL NAV */
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-green);
}

.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #bbb;
}

/* Owl Carousel Navigation Buttons */
.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-theme .owl-nav button {
    background: var(--primary-green) !important;
    color: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    font-size: 18px !important;
    margin: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(43, 182, 115, 0.35) !important;
    border: none !important;
    padding: 0 !important;
    pointer-events: all;
    cursor: pointer;
    opacity: 0.85;
}

.owl-theme .owl-nav button:hover {
    background: var(--primary-blue) !important;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 41, 128, 0.4) !important;
    opacity: 1;
}

.owl-theme .owl-nav button:active {
    transform: scale(1.08) translateY(0);
}

.owl-theme .owl-nav button span {
    font-size: 18px !important;
}

/* Carousel Container Positioning */
.owl-carousel {
    position: relative;
    padding: 20px 0;
}

.owl-stage-outer {
    position: relative;
}

/* Previous/Next Button Icons */
.owl-theme .owl-nav .owl-prev::before {
    content: "‹";
    font-size: 28px !important;
}

.owl-theme .owl-nav .owl-next::before {
    content: "›";
    font-size: 28px !important;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .top-bar-right {
        justify-content: center;
        margin-top: 8px;
    }

    .hero-section {
        padding: 40px 0 50px;
    }

    .hero-form-card {
        margin-top: 35px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .about-img-placeholder {
        height: 250px;
        margin-bottom: 30px;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }
}

/* INLINE CONFIRM */
.inline-confirm {
    display: none;
    background: rgba(43, 182, 115, 0.08);
    border: 1px solid var(--primary-green);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
    margin-top: 15px;
}

.inline-confirm.show {
    display: block;
}

.inline-confirm i {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 8px;
}

.inline-confirm p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-text);
}