:root {
    --primary: #E9D84A;
    --primary-dark: #c9ba30;
    --secondary: black;
    --accent: #ffffff;
    --bg: #F8F9FA;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --card-bg: #ffffff;
    --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 40%, #0d2137 100%);
    --gradient-primary: linear-gradient(135deg, #E9D84A 0%, #f5e870 100%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ====== PRELOADER ====== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-pill {
    width: 60px;
    height: 30px;
    background: var(--primary);
    border-radius: 15px;
    position: relative;
    animation: pillBounce 0.8s ease-in-out infinite alternate;
}

.loader-pill::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border-radius: 50%;
}

@keyframes pillBounce {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-20px)
    }
}

/* ====== STICKY FLOATS ====== */
.float-btns {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.float-wa {
    background: #25D366;
}

.float-call {
    background: #0078D7;
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

.mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    text-decoration: none;
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.mobile-bar a i {
    font-size: 18px;
    margin-bottom: 3px;
}

.mobile-bar a.call-btn {
    background: #0078D7;
}

.mobile-bar a.wa-btn {
    background: #25D366;
}

.mobile-bar a.enq-btn {
    background: var(--primary);
    color: var(--secondary);
}

@media(max-width:768px) {
    .mobile-bar {
        display: flex;
    }

    .float-btns {
        display: none;
    }

    body {
        padding-bottom: 65px;
    }
}

/* ====== HEADER ====== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #006268;
    padding: 0;
    transition: all 0.3s ease;
}

.top-bar {
    background: #006268;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.top-bar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.top-bar a:hover {
    text-decoration: underline;
}

.navbar {
    padding: 5px 0;
    background-color: white;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.navbar-brand img {
    width: 150px;
}

.navbar-brand span {
    color: #fff;
}

.brand-sub {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.85) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #006268;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #006268 !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta-btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-call-nav {
    background: #0078D7;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-call-nav:hover {
    background: #005fb3;
    color: #fff;
    transform: translateY(-1px);
}

.btn-wa-nav {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-wa-nav:hover {
    background: #1aaa52;
    color: #fff;
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 2px solid #004a4f;
     padding:8px 12px;
}
.navbar-toggler:focus{
    box-shadow:none;
}
.navbar-toggler .navbar-toggler-icon {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,95,115,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}


/* ========== home page start =========== */



.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary-main {
    background: #006268;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-main:hover {
    background: #006268;
    transform: translateY(-3px);
    color: var(--secondary);
}

.btn-outline-main {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-outline-main:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}



/* ====== SECTION COMMONS ====== */
.section-pad {
    padding: 50px 0;
}

.section-tag {
    display: inline-block;
    background: #006268;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(233, 216, 74, 0.3);
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: black !important;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title span {
    color: #006268;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 4px;
    background: #006268;
    border-radius: 2px;
    margin: 16px 0 0;
}

.divider-center {
    margin: 16px auto 0;
}

.carousel {
    margin-top: 116px !important;

}

/* ====== ABOUT ====== */
.about-section {
    background: #ffffff;
}


.about-img-wrap {
    background-image: url('./image/product.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 20px;
width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.7) 0%, rgba(233, 216, 74, 0.15) 100%);
}

.about-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 700;
}

.about-badge-float .num {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.about-badge-float .lbl {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
}

.about-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 20px;
}

.about-points {
    list-style: none;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-points li i {
    color: #006268;
    font-size: 16px;
    width: 20px;
}

/* ====== WHY CHOOSE US ====== */
.why-section {
    background: #F4F7FF;
}

.why-section .section-title {
    color: #fff;
}

.why-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.why-section .section-tag {
    background: #006268;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #006268;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #006268;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.why-card:hover {
    background: rgba(233, 216, 74, 0.06);
    border-color: #006268;
    transform: translateY(-6px);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    line-height: 1.7;
}

/* ====== FRANCHISE SECTION ====== */
.franchise-section {
    background: #F4F7FF;
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(233, 216, 74, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(233, 216, 74, 0.05) 0%, transparent 60%);
}

.franchise-section .section-title {
    color: rgb(0, 0, 0);
}

.franchise-section .section-sub {
    color: rgba(255, 255, 255, 0.65);
    max-width: 750px;
}

.franchise-section .section-tag {
    background: #006268;
}

.franchise-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #006268;
    border: 1px solid #006268;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}

.franchise-step {
    flex: 1;
    min-width: 150px;
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid #006268;
    position: relative;
    background: #006268;
    transition: background 0.3s;
}

.franchise-step:last-child {
    border-right: none;
}

.franchise-step:hover {}

.ab {
    background: transparent;
    color: #006268;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #006268;
    transition: all 0.3s;
}

.step-num {
    font-size: 40px;
    font-weight: 900;
    color: white !important;
    line-height: 1;
    margin-bottom: 12px;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    margin: 0 auto 14px;
}

.franchise-step h5 {
    font-size: 13px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin: 0;
}

/* ====== SERVICES ====== */
.services-section {
    background: var(--bg);
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 216, 74, 0.06), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: #006268;
}

.serv-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover .serv-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}



.hw-gallery-section {
    background: #F4F7FF;
    padding: 50px 0;
}

.hw-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.hw-heading {
    text-align: center;
    margin-bottom: 60px;
}

.hw-badge {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #006268;
    color: #006268;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hw-heading h2 {
    color: #111;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hw-heading h2 span {
    color: #006268;
}

.hw-line {
    width: 70px;
    height: 4px;
    background: #006268;
    margin: 15px auto 20px;
    border-radius: 50px;
}

.hw-heading p {
    width: 60%;
    margin: 0 auto;
    display: block;

}

.hw-card {
    overflow: hidden;
    border-radius: 20px;
}

.hw-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    transition: .4s;
}

.hw-card:hover img {
    transform: scale(1.05);
}

.hw-slider {
    padding-bottom: 90px;
}

/* Bottom Navigation */

.hw-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.hw-prev,
.hw-next {
    position: static !important;
    width: 55px !important;
    height: 55px !important;
    margin: 0 !important;
    background: #006268;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hw-prev:after,
.hw-next:after {
    font-size: 18px !important;
    color: #006268;
    font-weight: 700;
}

/* Pagination */

.swiper-pagination {
    position: relative !important;
    margin-top: 25px;

}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #006268 !important;
}

@media(max-width:991px) {

    .hw-heading h2 {
        font-size: 38px;
    }

    .hw-card img {
        height: 320px;
    }

}

@media(max-width:767px) {

    .hw-gallery-section {
        padding: 50px 0;
    }

    .hw-nav {
        margin-top: 10px;
    }

    .hw-heading h2 {
        font-size: 25px;
    }

    .hw-card img {
        height: 240px;
    }
    .hw-heading p {
        width: 100%;
    }

}



/* ====== PRODUCTS ====== */
.products-section {
    background: #fff;
}

.cat-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
}

.cat-card:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

a {
    text-decoration: none;
}

.cat-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    margin: 0 auto 14px;
    transition: all 0.3s;
}

.cat-card:hover .cat-icon {
    transform: rotate(360deg) scale(1.1);
}

.cat-card h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s;
}

.cat-card:hover h6 {
    color: #fff;
}

/* ====== MISSION VISION ====== */
.mvg-section {
    background: var(--bg);
}

.mvg-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.mvg-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #006268;
}

.mvg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mvg-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 22px;
}

.mvg-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--secondary);
    letter-spacing: 1px;
}

.mvg-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ====== CORE VALUES ====== */
.values-section {
    bground: #fff
}

.values-section .section-title {
    color: #fff;
}

.values-section .section-tag {
    background: ;
}

.val-card {
    text-align: center;
    padding: 40px 24px;
    background: #F4F7FF;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    transition: all 0.4s;
    height: 100%;
}

.val-card:hover {
    background: ;
    border-color: #006268;
    transform: translateY(-6px);
}

.val-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 22px;
    transition: transform 0.3s;
}

.val-card:hover .val-icon {
    transform: rotateY(180deg);
}

.val-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #006268;
    margin-bottom: 10px;
}

.val-card p {
    font-size: 13px;
    line-height: 1.7;
}

/* ====== BENEFITS ====== */
.benefits-section {
    background: var(--bg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFF;
}

.benefit-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ====== COUNTERS ====== */
.counter-section {
    background: #006268;
    padding: 70px 0;
}

.counter-box {
    text-align: center;
}

.counter-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #FFF;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-suffix {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #FFF;
}

.counter-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    margin-top: 8px;
}

.counter-divider {
    width: 1px;
    background: rgba(31, 31, 31, 0.2);
    height: 80px;
}

@media(max-width:768px) {
    .counter-divider {
        display: none;
    }
}

/* ====== PROCESS ====== */
.process-section {
    background: #fff;
}

.process-line {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.process-step {
    margin-top: 15px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: #006268;
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.step-circle {
    margin-top: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;

    border: 3px solid #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #006268;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.process-step:hover .step-circle {

    background: #006268;
    color: #FFF;
    transform: scale(1.1);
}

.process-step h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ====== TESTIMONIALS ====== */
.testi-section {
    background: var(--bg);
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    border-left: 5px solid transparent;
}

.testi-card:hover {
    border-left-color: #006268;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testi-quote {
    font-size: 60px;
    color: #111;
    line-height: 0.5;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
    flex-shrink: 0;
}

.testi-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testi-role {
    font-size: 12px;
    color: var(--text-muted);
}

.stars {
    color: var(--primary-dark);
    font-size: 13px;
    margin-top: 4px;
}

/* ====== FAQ ====== */
.faq-section {
    background: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 18px 22px;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #006268;
    background: #fffbdb !important;
}

.accordion-button::after {
    filter: brightness(0.3);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

.accordion-body {
    padding: 16px 22px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    background: #fafafa;
}

/* ====== CTA BAND ====== */
.cta-section {
    background: #F4F7FF;
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(233, 216, 74, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== CONTACT ====== */
.contact-section {
    background: var(--bg);
}

.contact-card {
    background: var(--secondary);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #006268;
}

.c-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.c-val {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.5;
}

.c-val a {
    color: #fff;
    text-decoration: none;
}

.c-val a:hover {
    text-decoration: underline;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
}

.form-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-control,
.form-select {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(233, 216, 74, 0.15);
    outline: none;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.btn-submit {
    width: 100%;
    background: #006268;
    color: #FFF;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {

    transform: translateY(-2px);

}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    margin-top: 20px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================ Home page end ====================================== */



/* ============================ About us page start ============================== */
/* ===== SHARED UTILITIES ===== */
.hh-tag {
    display: inline-block;
    background: #006268;
    color: #fff;
    border: 1px solid #006268;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    margin-bottom: 14px;
}

.hh-title {
    font-size: 30px !important;
    font-weight: 800;
    line-height: 1.22;
    color: #000000 !important;
    margin-bottom: 16px;
}

.hh-title-white {
    color: #000000;
}

.hh-title span {
    color: #c8b800;
}

.hh-title-white span {
    color: #E9D84A;
}

.hh-divider {
    width: 54px;
    height: 4px;
    background: #006268;
    border-radius: 2px;
    margin-bottom: 22px;
}

.hh-divider-center {
    margin-left: auto;
    margin-right: auto;
}

.hh-body-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

.hh-body-text-white {
    font-size: 15px;
    line-height: 1.9;
}

.hh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #006268;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.hh-btn-primary:hover {
    background: #058188;
    transform: translateY(-3px);
    color: #1F1F1F;
}

.hh-btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #1F1F1F;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid rgba(31, 31, 31, 0.25);
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.hh-btn-outline-dark:hover {
    border-color: #1F1F1F;
    background: #1F1F1F;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.hh-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #FFFFFF;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.hh-btn-outline-white:hover {
    border-color: #E9D84A;
    color: #E9D84A;
    transform: translateY(-3px);
}

/* ==============================
   PAGE BANNER
============================== */
.hh-about-banner {
    min-height: 440px;
    background: #006268;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    margin-top: 100px;
}

.hh-about-banner-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(233, 216, 74, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 216, 74, 1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.035;
}

.hh-about-banner-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 60%, rgba(233, 216, 74, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(233, 216, 74, 0.06) 0%, transparent 45%);
}

.hh-about-banner-pills {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hh-pill {
    position: absolute;
    border-radius: 20px;
    background: rgba(233, 216, 74, 0.06);
    border: 1px solid rgba(233, 216, 74, 0.14);
    animation: hhPillFloat 9s ease-in-out infinite;
}

.hh-pill:nth-child(1) {
    width: 90px;
    height: 32px;
    top: 18%;
    left: 6%;
    animation-delay: 0s
}

.hh-pill:nth-child(2) {
    width: 55px;
    height: 22px;
    top: 35%;
    right: 9%;
    animation-delay: 1.8s
}

.hh-pill:nth-child(3) {
    width: 110px;
    height: 38px;
    bottom: 22%;
    left: 4%;
    animation-delay: 3.2s
}

.hh-pill:nth-child(4) {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    bottom: 35%;
    right: 6%;
    animation-delay: 2.5s
}

@keyframes hhPillFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: .35
    }

    50% {
        transform: translateY(-18px) rotate(4deg);
        opacity: .75
    }
}

.hh-breadcrumb-wrap {
    margin-bottom: 22px;
}

.hh-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 14px;
}

.hh-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.hh-breadcrumb a:hover {
    color: #E9D84A;
}

.hh-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
}

.hh-breadcrumb .active {
    color: #fff;
    font-weight: 600;
}

.hh-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 216, 74, 0.12);
    border: 1px solid rgba(233, 216, 74, 0.38);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hh-banner-heading {
    font-size: 35px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 20px;
}

.hh-banner-heading span {}

.hh-banner-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);

    max-width: 620px;
}

.hh-banner-deco {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, 0.08);
    pointer-events: none;
}

.hh-banner-deco::before {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px dashed rgba(233, 216, 74, 0.07);
    animation: hhRotate 25s linear infinite;
}

.hh-banner-deco::after {
    content: '';
    position: absolute;
    inset: 90px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, 0.05);
    animation: hhRotate 35s linear infinite reverse;
}

@keyframes hhRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* ==============================
   COMPANY INTRODUCTION
============================== */
.hh-company-intro {
    background: #FFFFFF;
    padding: 50px 0;
}

.hh-intro-img-wrap {
    background-image: url('./image/about-img.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.hh-intro-img-inner {
    height: 460px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a2f4a 50%, #0d3d2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hh-intro-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(233, 216, 74, 0.12) 0%, transparent 65%);
}

.hh-intro-img-icon {
    font-size: 90px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.hh-intro-img-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hh-intro-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #E9D84A;
    color: #1F1F1F;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 800;
}

.hh-intro-badge .ib-num {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.hh-intro-badge .ib-lbl {
    font-size: 11px;
    font-weight: 600;
    opacity: .75;
}

.hh-intro-cert {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(31, 31, 31, 0.88);
    border: 1px solid rgba(233, 216, 74, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hh-intro-cert-icon {
    font-size: 22px;
}

.hh-intro-cert-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.4;
}

.hh-intro-cert-text strong {
    color: #E9D84A;
    display: block;
}

.hh-who-tag {
    display: inline-block;
    background: #006268;
    color: #fff;
    border: 1px solid rgba(233, 216, 74, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hh-intro-points {
    list-style: none;
    margin-top: 20px;
}

.hh-intro-points li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

.hh-intro-points li:last-child {
    border-bottom: none;
}

.hh-intro-points li i {
    color: #006268;
    font-size: 15px;
    width: 20px;
    flex-shrink: 0;
}

.hh-intro-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ==============================
   OUR STORY
============================== */
.hh-company-story {
    background: #F4F7FF;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hh-company-story::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 15% 50%, rgba(233, 216, 74, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 50%, rgba(233, 216, 74, 0.04) 0%, transparent 45%);
}

.hh-story-timeline {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    margin-top: 40px;
    gap: 10px;
}

.hh-story-milestone {
    flex: 1;
    min-width: 160px;
    padding: 30px 22px;
    background: #006268;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
    position: relative;
    border-radius: 10px;
    border: 2px solid #006268;

}

.hh-story-milestone:last-child {
    border-right: none;
}

.hh-story-milestone:hover {
    background: #006268;
    border: 2px solid #006268;

}

.hh-ms-year {
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
    margin-bottom: 8px;
}

.hh-ms-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1F1F1F;
    margin: 0 auto 12px;
}

.hh-ms-title {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.hh-ms-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 5px;
    line-height: 1.5;
}

.hh-story-body-text {
    font-size: 16px;
    max-width: 820px;
    margin: 0 auto;
}

/* ==============================
   MISSION VISION GOAL
============================== */
.hh-mission-vision-goal {
    background: #F8F9FA;
    padding: 50px 0;
}

.hh-mvg-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 38px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border-bottom: 4px solid #006268;
}

.hh-mvg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(233, 216, 74, 0.07), transparent);
    transition: height 0.4s;
}

.hh-mvg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.hh-mvg-card:hover::before {
    height: 100%;
}

.hh-mvg-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.hh-mvg-card:hover .hh-mvg-icon {
    transform: scale(1.08) rotate(-4deg);
}

.hh-mvg-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
    display: block;
}

.hh-mvg-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 14px;
}

.hh-mvg-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
}

/* ==============================
   WHY HEALTHWELL
============================== */
.hh-about-why-us {
    background: #F4F7FF;
    padding: 50px 0;
}

.hh-why-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 32px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.hh-why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #006268 transform: scaleX(0);
    transition: transform 0.4s;
}

.hh-why-card:hover {
    background: rgba(233, 216, 74, 0.06);
    border-color: rgba(233, 216, 74, 0.22);
    transform: translateY(-6px);
}

.hh-why-card:hover::after {
    transform: scaleX(1);
}

.hh-why-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.hh-why-card:hover .hh-why-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.hh-why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.hh-why-card p {
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

/* ==============================
   CORE VALUES
============================== */
.hh-core-values {
    background: #ffffff;
    padding: 50px 0;
}

.hh-val-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 42px 28px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    text-align: center;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.hh-val-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #006268;
}

.hh-val-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.13);
}

.hh-val-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 24px;
    transition: transform 0.4s;
}

.hh-val-card:hover .hh-val-icon {
    transform: rotateY(180deg);
}

.hh-val-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 12px;
}

.hh-val-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ==============================
   COMPANY STRENGTH (COUNTERS)
============================== */
.hh-company-strength {
    background: #006268;
    padding: 80px 0;
}

.hh-strength-box {
    text-align: center;
}

.hh-strength-num-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.hh-strength-suffix {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
}

.hh-strength-lbl {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
}

.hh-strength-sep {
    width: 1px;
    background: rgba(31, 31, 31, 0.2);
    height: 80px;
    align-self: center;
}

@media(max-width:768px) {
    .hh-strength-sep {
        display: none;
    }
    .hh-banner-heading{
        font-weight: 700;
    }
    .hh-about-banner, .hh-company-intro, .hh-company-story, .hh-mission-vision-goal, .hh-about-why-us, .hh-core-values, .hh-company-strength, .hh-quality-commitment, .hh-quality-commitment, .hh-quality-commitment, .hh-business-partner, .hh-about-cta, .hh-quality-commitment, .hh-quality-commitment{
        padding: 30px 10px;
    }
    .hh-quality-commitment, .hh-business-partner, .hh-about-cta, .hw-pcd-introduction, .hw-pcd-advantages, .hw-pcd-mvg, .hw-pcd-trust, .hw-pcd-testimonials, .hw-pcd-explanation, .hw-pcd-benefits, .hw-pcd-products, .hw-contact-info, .hw-contact-form-area, .hw-contact-hours{
        padding: 30px 10px !important;
    }
}

/* ==============================
   QUALITY COMMITMENT
============================== */
.hh-quality-commitment {
    background: #FFFFFF;
    padding: 50px 0;
}

.hh-quality-img-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hh-quality-img-inner {
    height: 420px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 50%, #102a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hh-quality-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(233, 216, 74, 0.12) 0%, transparent 60%);
}

.hh-quality-img-icon {
    font-size: 88px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hh-quality-img-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hh-quality-overlay-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #E9D84A;
    color: #1F1F1F;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 13px;
}

.hh-quality-list {
    list-style: none;
    margin-top: 22px;
}

.hh-quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.hh-quality-list li:last-child {
    border-bottom: none;
}

.hh-quality-check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    color: #ffffff;
    font-weight: 700;
    margin-top: 2px;
}

/* ==============================
   BUSINESS PARTNER
============================== */
.hh-business-partner {
    background: #F4F7FF;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hh-business-partner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(233, 216, 74, 0.08) 0%, transparent 65%);
}

.hh-business-partner-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(233, 216, 74, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 216, 74, 1) 1px, transparent 1px);
    background-size: 55px 55px;
    opacity: 0.03;
}

.hh-partner-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 36px;
}

.hh-perk-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #006368a1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.hh-perk-pill i {
    color: #ffffff;
}

.hh-partner-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hh-partner-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hh-partner-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.hh-partner-stat-card:hover {
    background: rgba(233, 216, 74, 0.08);
    border-color: rgba(233, 216, 74, 0.25);
    transform: translateX(6px);
}

.hh-psc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.hh-psc-num {
    font-size: 26px;
    font-weight: 900;
    color: #006268;
    line-height: 1;
}

.hh-psc-lbl {
    font-size: 12px;
    font-weight: 500;
}

/* ==============================
   CTA SECTION
============================== */
.hh-about-cta {
    background: #006268;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hh-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 45%);
}

.hh-cta-heading {
    font: size 30px;
    ;
    font-weight: 900;
    color: #1F1F1F;
    margin-bottom: 16px;
}

.hh-cta-sub {
    font-size: 16px;
    color: rgba(31, 31, 31, 0.65);
    max-width: 600px;
    margin: 0 auto 36px;
}

.hh-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hh-btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #0078D7;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(0, 120, 215, 0.38);
    font-family: 'Poppins', sans-serif;
}

.hh-btn-cta-call:hover {
    background: #005fb3;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 120, 215, 0.5);
    color: #fff;
}

.hh-btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
    font-family: 'Poppins', sans-serif;
}

.hh-btn-cta-wa:hover {
    background: #1aaa52;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.hh-btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #1F1F1F;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
}

.hh-btn-cta-dark:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    color: #E9D84A;
}

/* ============================ About us page end ============================== */


/* ============================ PCD Pharma Franchise page start ============================== */
/* ---- SCROLL REVEAL ---- */

/* ---- SHARED ---- */
.pf-tag {
    display: inline-block;
    background: #006268;
    color: #fff;
    border: 1px solid #006268;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px
}

.pf-h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.22;
    color: #1F1F1F;
    margin-bottom: 16px
}

.pf-h2 span {
    color: #006268;
}

.pf-h2-white {
    color: #000;
}

.pf-h2-white span {
    color: #006268;
}

.pf-line {
    width: 52px;
    height: 4px;
    background: #006268;
    border-radius: 2px;
    margin-bottom: 22px
}

.pf-line-c {
    margin-left: auto;
    margin-right: auto
}

.pf-body {
    font-size: 16px;
    color: #555;
}

.pf-body-w {
    font-size: 15px;

    line-height: 1.9
}

.pf-sec {
    padding: 88px 0
}

.pf-btn-y {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #ffffff;
    color: #006268;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Poppins', sans-serif
}

.pf-btn-y:hover {
    transform: translateY(-3px);
    color: #000;
}

.pf-btn-ow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #006268;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all .3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

.pf-btn-ow:hover {
    border-color: #006268;
    color: #004a4f;
    background: #fff;
    transform: translateY(-3px)
}

.pf-btn-od {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #006268;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #006268;
    transition: all .3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

.pf-btn-od:hover {
    background: #006268;
    color: #FFFFFF;
    border-color: #006268;
    transform: translateY(-3px)
}

.pf-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #0078D7;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(0, 120, 215, .35);
    font-family: 'Poppins', sans-serif
}

.pf-btn-call:hover {
    background: #005fb3;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0, 120, 215, .5)
}

.pf-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
    font-family: 'Poppins', sans-serif
}

.pf-btn-wa:hover {
    background: #1aaa52;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .5)
}

/* ============================
   BANNER
============================ */
.hw-pcd-banner {
    min-height: 490px;
    background: #006268;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px 0;
    margin-top: 130px;
}

.hw-pcd-banner-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(233, 216, 74, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(233, 216, 74, 1) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: .032
}

.hw-pcd-banner-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 25% 55%, rgba(233, 216, 74, .09) 0%, transparent 55%), radial-gradient(ellipse at 80% 30%, rgba(233, 216, 74, .05) 0%, transparent 45%)
}

.hw-pcd-banner-pills {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hw-pcd-pill {
    position: absolute;
    border-radius: 20px;
    background: rgba(233, 216, 74, .05);
    border: 1px solid rgba(233, 216, 74, .13);
    animation: hwPillF 9s ease-in-out infinite
}

.hw-pcd-pill:nth-child(1) {
    width: 88px;
    height: 30px;
    top: 16%;
    left: 7%;
    animation-delay: 0s
}

.hw-pcd-pill:nth-child(2) {
    width: 52px;
    height: 20px;
    top: 32%;
    right: 10%;
    animation-delay: 2s
}

.hw-pcd-pill:nth-child(3) {
    width: 105px;
    height: 36px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3.5s
}

.hw-pcd-pill:nth-child(4) {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    bottom: 38%;
    right: 7%;
    animation-delay: 1.5s
}

@keyframes hwPillF {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: .35
    }

    50% {
        transform: translateY(-18px) rotate(4deg);
        opacity: .75
    }
}

.hw-pcd-bc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 15px;
    margin-bottom: 22px
}

.hw-pcd-bc a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s
}

.hw-pcd-bc a:hover {
    color: #E9D84A
}

.hw-pcd-bc .sep {
    color: rgba(255, 255, 255, .3);
    font-size: 9px
}

.hw-pcd-bc .cur {
    color: #fff;
    font-weight: 600
}

.hw-pcd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 216, 74, .12);
    border: 1px solid rgba(233, 216, 74, .38);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 22px
}

.hw-pcd-banner h1 {
    font-size: 35px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 20px
}

.hw-pcd-banner h1 span {
    color: #fff;
}

.hw-pcd-banner-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    max-width: 620px;
    margin-bottom: 32px
}

.hw-pcd-banner-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hw-pcd-banner-deco {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, .07);
    pointer-events: none
}

.hw-pcd-banner-deco::before {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px dashed rgba(233, 216, 74, .06);
    animation: hwRot 22s linear infinite
}

.hw-pcd-banner-deco::after {
    content: '';
    position: absolute;
    inset: 110px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, .04);
    animation: hwRot 32s linear infinite reverse
}

@keyframes hwRot {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

/* ============================
   INTRODUCTION
============================ */
.hw-pcd-introduction {
    background: #F4F7FF;
    padding: 50px 0
}

.hw-intro-img-wrap {
    background-image: url('./image/pcd.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .12)
}

.hw-intro-img-inner {
    height: 460px;
    background: linear-gradient(135deg, #080818 0%, #162840 55%, #0b2e1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.hw-intro-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 45% 50%, rgba(233, 216, 74, .11) 0%, transparent 62%)
}

.hw-intro-img-icon {
    font-size: 90px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.hw-intro-img-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    z-index: 1
}

.hw-intro-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: #E9D84A;
    color: #1F1F1F;
    border-radius: 14px;
    padding: 13px 20px;
    font-weight: 800
}

.hw-intro-badge .n {
    font-size: 28px;
    font-weight: 900;
    line-height: 1
}

.hw-intro-badge .l {
    font-size: 11px;
    font-weight: 600;
    opacity: .7
}

.hw-intro-cert {
    position: absolute;
    top: 22px;
    right: 22px;
    background: rgba(10, 10, 28, .88);
    border: 1px solid rgba(233, 216, 74, .28);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

.hw-intro-cert-t {
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    line-height: 1.4
}

.hw-intro-cert-t strong {
    color: #E9D84A;
    display: block
}

.hw-intro-pts {
    list-style: none;
    margin-top: 20px
}

.hw-intro-pts li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a
}

.hw-intro-pts li:last-child {
    border-bottom: none
}

.hw-intro-pts li i {
    color: #006268;
    font-size: 15px;
    width: 20px;
    flex-shrink: 0
}

/* ============================
   EXPLANATION (What is PCD)
============================ */
.hw-pcd-explanation {
    padding: 50px 0;
    position: relative;
    overflow: hidden
}

.hw-pcd-explanation::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 20% 50%, rgba(233, 216, 74, .07) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(233, 216, 74, .04) 0%, transparent 50%)
}

.hw-exp-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.hw-exp-card {
    background: #F4F7FF;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.hw-exp-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #006268;
    transform: scaleX(0);
    transition: transform .35s
}

.hw-exp-card:hover {
    background: rgba(233, 216, 74, .06);
    border-color: rgba(233, 216, 74, .2);
    transform: translateY(-4px)
}

.hw-exp-card:hover::after {
    transform: scaleX(1)
}

.hw-exp-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 14px;
    transition: transform .3s
}

.hw-exp-card:hover .hw-exp-icon {
    transform: scale(1.1) rotate(-5deg)
}

.hw-exp-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px
}

.hw-exp-card p {
    font-size: 12px;
    line-height: 1.65;
    margin: 0
}


/* ==============slider image ========= */

.hh-product-slider {
    background: #F4F7FF;
    padding: 50px 0;
    overflow: hidden;
}

.hh-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.hh-heading-area {
    text-align: center;
    margin-bottom: 60px;
}

.hh-badge {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #006268;
    border-radius: 50px;
    color: #006268;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hh-title {
    font-size: 30px;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 15px;
}

.hh-reveal-left h2 {
    color: black !important;
}

.hh-title span {
    color: #006268;
}

.hh-line {
    width: 60px;
    height: 4px;
    background: #006268 !important;
    margin: 20px auto;
    border-radius: 10px;
}

.hh-desc {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
}

.hh-slider-wrap {
    position: relative;
    padding: 0 60px;
}

.hh-product-card {
    background: #e9ed24;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: .4s;
}

.hh-product-card:hover {
    transform: translateY(-10px);
}

.hh-product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
}

.hh-product-name {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.hh-product-text {
    font-size: 15px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hh-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
}

.hh-prev,
.hh-next {
    width: 50px !important;
    height: 50px !important;
    background: #006268;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px !important;
    font-weight: 800;
    color: #111 !important;
}

.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    background: #006268 !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #111 !important;
}

@media(max-width:991px) {

    .hh-title {
        font: size 30px;
        px;
    }

    .hh-desc {
        font-size: 16px;
    }

}

@media(max-width:767px) {

    .hh-product-slider {
        padding: 70px 0;
    }

    .hh-title {
        font-size: 25px !important;
    }

    .hh-slider-wrap {
        padding: 0 10px;
    }

    .hh-prev,
    .hh-next {
        display: none;
    }
 .hw-pcd-banner {
    padding: 30px 10px !important;

 }
    .hw-pcd-banner h1 {
        font-size: 30px;
        font-weight: 700;
    }

    .hw-pcd-badge {
        font-size: 11px;

    }
.carousel{
    margin-top: 87px !important;
}
    .pf-tag {
        font-size: 14px;
        align-items: center !important;


    }

    .pf-h2 {
        font-size: 25px;
        text-align: center;
    }

}

/* ============================
   BENEFITS
============================ */
.hw-pcd-benefits {
    background: #F8F9FA;
    padding: 50px 0
}

.hw-ben-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .07);
    height: 100%;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent
}

.hw-ben-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 216, 74, .06), transparent);
    transition: left .6s ease
}

.hw-ben-card:hover::before {
    left: 100%
}

.hw-ben-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .13);
    border-bottom-color: #006268;
}

.hw-ben-icon {
    width: 64px;
    height: 64px;
    border-radius: 17px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform .3s
}

.hh-desc .hw-ben-card:hover .hw-ben-icon {
    transform: scale(1.1) rotate(-5deg)
}

.hw-ben-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 10px
}

.hw-ben-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
    margin: 0
}

/* ============================
   PRODUCT RANGE
============================ */
.hw-pcd-products {
    background: #FFFFFF;
    padding: 50px 0
}

.hw-prod-cat {
    background: #F8F9FA;
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all .32s;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%
}

.hw-prod-cat:hover {
    background: #1F1F1F;
    border-color: #E9D84A;
    transform: translateY(-5px)
}

.hw-prod-cat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #E9D84A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1F1F1F;
    margin: 0 auto 14px;
    transition: transform .4s
}

.hw-prod-cat:hover .hw-prod-cat-icon {
    transform: rotate(360deg) scale(1.1)
}

.hw-prod-cat h6 {
    font-size: 13px;
    font-weight: 700;
    color: #1F1F1F;
    margin: 0;
    transition: color .3s
}

.hw-prod-cat:hover h6 {
    color: #FFFFFF
}

/* ============================
   ADVANTAGES
============================ */
.hw-pcd-advantages {
    background: #F8F9FA;
    padding: 50px 0
}

.hw-adv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    height: 100%;
    transition: all .32s
}

.hw-adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .12)
}

.hw-adv-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    flex-shrink: 0;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.hw-adv-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1F1F1F
}

.hw-adv-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.65
}

/* ============================
   MISSION VISION GOAL
============================ */
.hw-pcd-mvg {
    background: #FFFFFF;
    padding: 50px 0
}

.hw-mvg-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 38px 28px;
    height: 100%;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    border-left: 5px solid #006268;
}

.hw-mvg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .15)
}

.hw-mvg-card:hover h3 {}

.hw-mvg-card:hover p {}

.hw-mvg-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 22px;
    transition: all .4s
}

.hw-mvg-card:hover .hw-mvg-icon {
    color: #1F1F1F;
    transform: scale(1.08)
}

.hw-mvg-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006268;
    margin-bottom: 8px;
    display: block
}


.hw-mvg-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 14px;
    transition: color .4s
}

.hw-mvg-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    transition: color .4s;
    margin: 0
}

/* ============================
   PROCESS
============================ */
.hw-pcd-process {
    background: #F4F7FF;
    padding: 50px 0;
    position: relative;
    overflow: hidden
}

.hw-pcd-process::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(233, 216, 74, .07) 0%, transparent 65%)
}

.hw-proc-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding-bottom: 8px
}

.hw-proc-step {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: 0 10px;
    position: relative;
    margin-top: 10px;

}

.hw-proc-step::after {
    content: '';
    position: absolute;
    top: 29px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: linear-gradient(90deg, #E9D84A, rgba(233, 216, 74, .3));
    z-index: 0
}

.hw-proc-step:last-child::after {
    display: none
}

.hw-step-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #006268;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    transition: all .3s
}

.hw-proc-step:hover .hw-step-circle {
    background: #006268;
    color: #fff;
    transform: scale(1.1)
}

.hw-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    margin: 0 auto 12px
}

.hw-pcd-trust .hw-proc-step h5 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0
}

.hw-proc-step p {
    font-size: 11px;
    margin-top: 5px;
    line-height: 1.5
}

@media(max-width:767px) {
    .hw-pcd-process {
        display: none;
    }
}

/* ============================
   TRUST
============================ */
.hw-pcd-trust {

    padding: 50px 0
}

.hw-trust-visual {
    background: #1F1F1F;
    border-radius: 22px;
    padding: 38px 32px
}

.hw-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.hw-trust-item:last-child {
    border-bottom: none
}

.hw-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1F1F1F
}

.hw-trust-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 3px
}

.hw-trust-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
    line-height: 1.5
}

/* ============================
   COUNTER
============================ */
.hw-pcd-counter {
    background: #E9D84A;
    padding: 76px 0
}

.hw-cnt-box {
    text-align: center
}

.hw-cnt-num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #1F1F1F;
    line-height: 1
}

.hw-cnt-suf {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #1F1F1F
}

.hw-cnt-lbl {
    font-size: 15px;
    font-weight: 600;
    color: rgba(31, 31, 31, .62);
    margin-top: 8px
}

.hw-cnt-sep {
    width: 1px;
    background: rgba(31, 31, 31, .2);
    height: 78px;
    align-self: center
}

@media(max-width:768px) {
    .hw-cnt-sep {
        display: none
    }
}

/* ============================
   TESTIMONIALS
============================ */
.hw-pcd-testimonials {
    background: #F4F7FF;
    padding: 88px 0
}

.hw-testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all .4s;
    border-left: 5px solid transparent
}

.hw-testi-card:hover {
    border-left-color: #006268;
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .1)
}

.hw-testi-quote {
    font-size: 56px;
    color: #006268;
    line-height: .5;
    margin-bottom: 20px;
    font-family: Georgia, serif
}

.hw-testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 24px
}

.hw-testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #e8e8e8;
    padding-top: 20px
}

.hw-testi-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #1F1F1F;
    flex-shrink: 0
}

.hw-testi-name {
    font-size: 15px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 3px
}

.hw-testi-role {
    font-size: 12px;
    color: #888
}

.hw-testi-stars {
    color: #d4a800;
    font-size: 13px;
    margin-top: 4px
}

/* ============================
   FAQ
============================ */
.hw-pcd-faq {
    padding: 50px 0
}

.hw-faq-acc .accordion-item {
    border: 1px solid #000;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05)
}

.hw-faq-acc .accordion-button {
    font-size: 14px;
    font-weight: 600;
    color: #1F1F1F;
    padding: 18px 22px;
    background: #F4F7FF !important;
    border-radius: 12px !important;
    box-shadow: none !important
}

.hw-faq-acc .accordion-button:not(.collapsed) {
    color: #000;
    background: #fffadb !important
}

.hw-faq-acc .accordion-body {
    padding: 16px 22px;
    font-size: 14px;
    color: #666;
    line-height: 1.85;
    background: #fafafa
}



/* ============================
   CTA
============================ */
.hw-pcd-cta {
    background: #E9D84A;
    padding: 82px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hw-pcd-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, .18) 0%, transparent 55%), radial-gradient(ellipse at 75% 50%, rgba(255, 255, 255, .08) 0%, transparent 45%)
}

.hw-cta-h {
    font-size: 30px;
    font-weight: 900;
    color: #1F1F1F;
    margin-bottom: 16px
}

.hw-cta-sub {
    font-size: 16px;
    color: rgba(31, 31, 31, .62);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8
}

.hw-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .hw-intro-img-inner {
        height: 360px
    }

    .hw-exp-visual {
        grid-template-columns: 1fr 1fr
    }

    .hw-enq-form-wrap {
        padding: 36px 24px
    }

    .hw-enq-info {
        padding-right: 0;
        margin-bottom: 36px
    }
}

@media(max-width:767px) {

    .pf-sec,
    .hw-pcd-introduction,
    .hw-pcd-explanation,
    .hw-pcd-benefits,
    .hw-pcd-products,
    .hw-pcd-slider,
    .hw-pcd-advantages,
    .hw-pcd-mvg,
    .hw-pcd-process,
    .hw-pcd-trust,
    .hw-pcd-testimonials,
    .hw-pcd-faq,
    .hw-pcd-enquiry {
        padding: 60px 0
    }

    .hw-pcd-banner {
        min-height: auto;
        padding: 90px 0 50px
    }

    .hw-pcd-banner-deco {
        display: none
    }

    .hw-exp-visual {
        grid-template-columns: 1fr
    }

    .hw-slider-wrap {
        padding: 0 42px
    }
}

/* ============================ PCD Pharma Franchise page end ============================== */



/* ============================ Contact Us page start ============================== */
/* ── SCROLL REVEAL ── */


/* ── SHARED ATOMS ── */
.ct-tag {
    display: inline-block;
    background: #006268;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px
}

.ct-h2 {
    font-size: 30;
    font-weight: 700;
    line-height: 1.22;
    color: #1F1F1F;
    margin-bottom: 14px
}

.ct-h2 span {
    color: #006268;
}

.ct-h2w {
    color: #FFFFFF
}

.ct-h2w span {
    color: #006268;
}

.ct-bar {
    width: 52px;
    height: 4px;
    background: #006268;
    border-radius: 2px;
    margin-bottom: 22px
}

.ct-bar-c {
    margin-left: auto;
    margin-right: auto
}

.ct-muted {
    font-size: 15px;
    color: #666;
}

.ct-mutedw {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.9
}

.ct-sec {
    padding: 88px 0
}

/* Buttons */
.ct-btn-y {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #006268;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(233, 216, 74, .36);
    font-family: 'Poppins', sans-serif
}

.ct-btn-y a {
    color: #fff;
}

.ct-btn-y:hover {

    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(233, 216, 74, .5)
}

.ct-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #0078D7;
    color: #FFF;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(0, 120, 215, .32);
    font-family: 'Poppins', sans-serif
}

.ct-btn-call:hover {
    background: #006268;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0, 120, 215, .48)
}

.ct-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #FFF;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .32);
    font-family: 'Poppins', sans-serif
}

.ct-btn-wa:hover {
    background: #1aaa52;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(37, 211, 102, .48)
}

.ct-btn-od {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #1F1F1F;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid rgba(31, 31, 31, .2);
    transition: all .3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

.ct-btn-od:hover {
    background: #1F1F1F;
    color: #FFFFFF;
    border-color: #1F1F1F;
    transform: translateY(-3px)
}

.ct-btn-ow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #FFFFFF;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, .28);
    transition: all .3s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

.ct-btn-ow:hover {
    border-color: #E9D84A;
    color: #E9D84A;
    transform: translateY(-3px)
}

/* ══════════════════════════════════════
   1. PAGE BANNER
══════════════════════════════════════ */
.hw-contact-banner {
    min-height: 540px;
    background: #006268;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    margin-top: 100px;
}

.cb-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(233, 216, 74, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 216, 74, 1) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: .033
}

.cb-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 28% 55%, rgba(233, 216, 74, .09) 0%, transparent 55%),
        radial-gradient(ellipse at 78% 30%, rgba(233, 216, 74, .05) 0%, transparent 45%)
}

.cb-pills {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.cb-pill {
    position: absolute;
    border-radius: 20px;
    background: rgba(233, 216, 74, .05);
    border: 1px solid rgba(233, 216, 74, .13);
    animation: cbFloat 9s ease-in-out infinite
}

.cb-pill:nth-child(1) {
    width: 86px;
    height: 30px;
    top: 18%;
    left: 7%;
    animation-delay: 0s
}

.cb-pill:nth-child(2) {
    width: 52px;
    height: 20px;
    top: 34%;
    right: 10%;
    animation-delay: 2s
}

.cb-pill:nth-child(3) {
    width: 108px;
    height: 36px;
    bottom: 22%;
    left: 5%;
    animation-delay: 3.5s
}

.cb-pill:nth-child(4) {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    bottom: 36%;
    right: 7%;
    animation-delay: 1.5s
}

@keyframes cbFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: .35
    }

    50% {
        transform: translateY(-18px) rotate(4deg);
        opacity: .75
    }
}

.cb-deco {
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, .07);
    pointer-events: none
}

.cb-deco::before {
    content: '';
    position: absolute;
    inset: 52px;
    border-radius: 50%;
    border: 1px dashed rgba(233, 216, 74, .06);
    animation: cbRot 22s linear infinite
}

.cb-deco::after {
    content: '';
    position: absolute;
    inset: 112px;
    border-radius: 50%;
    border: 1px solid rgba(233, 216, 74, .04);
    animation: cbRot 32s linear infinite reverse
}

@keyframes cbRot {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.cb-bc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 14px;
    margin-bottom: 22px
}

.cb-bc a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s
}

.cb-bc a:hover {
    color: #E9D84A
}

.cb-bc .sep {
    color: rgba(255, 255, 255, .3);
    font-size: 9px
}

.cb-bc .cur {
    color: #fff;
    font-weight: 600
}

.cb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 216, 74, .12);
    border: 1px solid rgba(233, 216, 74, .38);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px
}

.cb-h1 {
    font-size: 35px;
    font-weight: 800;
    color: #000;
    line-height: 1.18;
    margin-bottom: 20px
}

.cb-h1 span {
    color: #fff;
}

.cb-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    max-width: 600px
}

/* ══════════════════════════════════════
   2. CONTACT INFO CARDS
══════════════════════════════════════ */
.hw-contact-info {
    background: #FFFFFF;
    padding: 50px 0
}

.ci-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    border-bottom: 4px solid transparent
}

.ci-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(233, 216, 74, .08), transparent);
    transition: height .4s
}

.ci-card:hover {
    background: #FFFFFF;
    border-bottom-color: #006268;
    transform: translateY(-7px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .12)
}

.ci-card:hover::before {
    height: 100%
}

.ci-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    transition: transform .3s
}

.ci-card:hover .ci-icon {
    transform: scale(1.1) rotate(-5deg)
}

.ci-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #006268;
    margin-bottom: 10px;
    display: block
}

.ci-label p {
    color: white !important;
}

.ci-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 10px
}

.ci-card p,
.ci-card a {
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    text-decoration: none;
    transition: color .2s
}

.ci-card a:hover {
    color: #b09a00
}

.ci-tag-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px
}

.ci-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 216, 74, .12);
    border: 1px solid rgba(233, 216, 74, .3);
    color: #006268;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600
}

.ci-service-tag i {
    font-size: 12px
}

/* ══════════════════════════════════════
   3. CONTACT FORM
══════════════════════════════════════ */
.hw-contact-form-area {
    background: #F8F9FA;
    padding: 50px 0
}

.cf-form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px 42px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, .07);
    height: 100%
}

.cf-form-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 8px
}

.cf-form-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}

.cf-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block
}

.cf-input {
    width: 100%;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1F1F1F;
    transition: all .3s;
    background: #FFFFFF;
    outline: none
}

.cf-input::placeholder {
    color: #bbb
}

.cf-input:focus {
    border-color: #E9D84A;
    box-shadow: 0 0 0 4px rgba(233, 216, 74, .14);
    background: #FEFEF5
}

.cf-input.invalid {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, .1)
}

.cf-submit {
    width: 100%;
    background: #006268;
    color: #1F1F1F;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Poppins', sans-serif;
    letter-spacing: .3px
}

.cf-submit:hover {
    background: #006268;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(233, 216, 74, .44)
}

.cf-note {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 14px
}

/* Form right visual */
.cf-visual {
    background: #1F1F1F;
    border-radius: 24px;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 520px
}

.cf-visual-top {
    flex: 1;
    background: linear-gradient(135deg, #080818 0%, #162840 55%, #0b2e1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 30px
}

.cf-visual-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 45%, rgba(233, 216, 74, .12) 0%, transparent 62%)
}

.cf-visual-icon {
    font-size: 80px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.cf-visual-title {
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 8px
}

.cf-visual-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.6
}

.cf-visual-bottom {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cf-vb-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.cf-vb-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #1F1F1F
}

.cf-vb-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    font-weight: 500
}

.cf-vb-text strong {
    color: #fff;
    display: block;
    font-size: 14px
}

.cf-vb-divider {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 4px 0
}

/* Quick action buttons */
.cf-quick-btns {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.cf-quick-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 16px 10px;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s
}

.cf-quick-btn i {
    font-size: 22px
}

.cf-quick-btn.cb-call {
    border-color: rgba(0, 120, 215, .3)
}

.cf-quick-btn.cb-call:hover {
    background: rgba(0, 120, 215, .15);
    border-color: #0078D7;
    color: #fff
}

.cf-quick-btn.cb-wa {
    border-color: rgba(37, 211, 102, .3)
}

.cf-quick-btn.cb-wa:hover {
    background: rgba(37, 211, 102, .15);
    border-color: #25D366;
    color: #fff
}

.cf-quick-btn.cb-mail {
    border-color: rgba(233, 216, 74, .3)
}

.cf-quick-btn.cb-mail:hover {
    background: rgba(233, 216, 74, .1);
    border-color: #E9D84A;
    color: #E9D84A
}



/* ══════════════════════════════════════
   6. GOOGLE MAP
══════════════════════════════════════ */
.hw-contact-map {
    background: #1F1F1F;
    padding: 50px 0
}

.cm-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    border: 3px solid rgba(233, 216, 74, .25);
    position: relative
}

.cm-map-container iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block
}

.cm-address-bar {
    background: #fff;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.cm-addr-icon {
    width: 40px;
    height: 40px;
    background: #006268;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0
}

.cm-addr-text {
    font-size: 14px;
    font-weight: 600;
    color: #1F1F1F
}

.cm-addr-text small {
    font-weight: 400;
    opacity: .7;
    font-size: 12px;
    display: block
}

/* ══════════════════════════════════════
   7. BUSINESS HOURS
══════════════════════════════════════ */
.hw-contact-hours {
    background: #FFFFFF;
    padding: 50px 0
}

.bh-card {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent
}

.bh-card.open-card {
    background: #1F1F1F;
    border-bottom-color: ;
}

.bh-card.closed-card {
    background: #F8F9FA;
    border-bottom-color: rgba(31, 31, 31, .12)
}

.bh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}

.bh-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px
}

.open-card .bh-icon {
    background: #fff;
    color: #000;
}

.closed-card .bh-icon {
    background: #e0e0e0;
    color: #888
}

.bh-days {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px
}

.open-card .bh-days {
    color: #FFFFFF
}

.closed-card .bh-days {
    color: #1F1F1F
}

.bh-time {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px
}

.open-card .bh-time {
    color: #fff;
}

.closed-card .bh-time {
    color: #aaa
}

.bh-status {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    margin-top: 8px
}

.open-card .bh-status {
    background: #fff;
    color: #000;

}

.closed-card .bh-status {
    background: rgba(0, 0, 0, .07);
    color: #888;
    border: 1px solid rgba(0, 0, 0, .1)
}

.bh-info-card {
    background: #006268;
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 22px
}

.bh-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #006268;
    flex-shrink: 0
}

.bh-info-text h5 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.bh-info-text p {
    font-size: 13px;
    color: #fff;
    margin: 0;
    line-height: 1.6
}

.bh-info-text a {
    color: #fff;
    font-weight: 700;
    text-decoration: none
}

.bh-info-text a:hover {
    text-decoration: underline
}



/* ── RESPONSIVE ── */
@media(max-width:991px) {
    .cf-visual {
        min-height: auto
    }

    .cfe-wrap {
        padding: 40px 28px
    }
}

@media(max-width:767px) {

    .ct-sec,
    .hw-contact-info,
    .hw-contact-form-area,
    .hw-contact-benefits,
    .hw-contact-franchise,
    .hw-contact-map,
    .hw-contact-hours,
    .hw-contact-faq {
        padding: 60px 0
    }

    .hw-contact-banner {
        min-height: auto;
        padding: 90px 0 52px
    }

    .cb-deco {
        display: none
    }

    .cf-form-card {
        padding: 32px 22px
    }

    .cfe-wrap {
        padding: 36px 22px
    }

    .bh-info-card {
        flex-direction: column;
        text-align: center
    }

    .cf-form-card h2 {

        font-size: 25px;
    }

    .cb-h1 {
        font-size: 30px;
    }

    .ct-h2 {
        font-size: 25px;
        font-weight: 700;
    }
}

/* ============================ Contact Us page end ============================== */


/* ============================ Gallery page start ============================== */

/* decorative diagonal stripe */
.hw-gallery-banner::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 0;
    width: 380px;
    height: 100%;
    background: rgba(233, 216, 74, 0.07);
    transform: skewX(-10deg);
    pointer-events: none;
}

/* yellow accent bar */
.hw-gallery-banner-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #E9D84A;
}

.hw-gallery-banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hw-gallery-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 216, 74, 0.15);
    border: 1px solid rgba(233, 216, 74, 0.35);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #E9D84A;
    margin-bottom: 20px;
}

.hw-gallery-banner-eyebrow span.hw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E9D84A;
    display: inline-block;
    animation: hw-blink 1.6s ease-in-out infinite;
}

@keyframes hw-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hw-gallery-banner-heading {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hw-gallery-banner-heading em {
    font-style: normal;
    color: #E9D84A;
}

.hw-gallery-banner-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hw-gallery-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hw-gallery-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
}

.hw-gallery-breadcrumb li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s;
}

.hw-gallery-breadcrumb li a:hover {
    color: #E9D84A;
}

.hw-gallery-breadcrumb li.hw-bc-active {
    color: #E9D84A;
    font-weight: 600;
}

.hw-gallery-breadcrumb li i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
}

/* floating pills */
.hw-banner-pill {
    position: absolute;
    border-radius: 50px;
    background: rgba(233, 216, 74, 0.1);
    border: 1px solid rgba(233, 216, 74, 0.2);
    pointer-events: none;
    animation: hw-float 6s ease-in-out infinite;
}

.hw-banner-pill-1 {
    width: 120px;
    height: 48px;
    right: 12%;
    bottom: 22%;
    animation-delay: 0s;
}

.hw-banner-pill-2 {
    width: 70px;
    height: 28px;
    right: 22%;
    top: 28%;
    animation-delay: 1.5s;
}

.hw-banner-pill-3 {
    width: 90px;
    height: 36px;
    right: 6%;
    top: 40%;
    animation-delay: 3s;
}

@keyframes hw-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ============================================
       GALLERY SECTION
    ============================================ */
.hw-gallery-products {
    padding: 50px 0;
    background: #F8F9FA;
}

.hw-gallery-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1F1F1F;
    margin-bottom: 10px;
}

.hw-gallery-section-label::before,
.hw-gallery-section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #E9D84A;
}

.hw-gallery-section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1F1F1F;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hw-gallery-section-title span {
    color: #006268;
    -webkit-text-stroke: 1px #1F1F1F;
}

.hw-gallery-section-desc {
    font-size: 0.95rem;
    color: #666;
    max-width: 540px;
    line-height: 1.7;
}

/* Filter Pills */
.hw-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 36px 0 44px;
}

.hw-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #006268;
    background: transparent;
    color: #1F1F1F;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.hw-filter-btn:hover,
.hw-filter-btn.hw-active {
    background: #006268;
    color: #fff;
    box-shadow: 0 4px 18px rgba(233, 216, 74, 0.4);
    transform: translateY(-1px);
}

/* Count badge */
.hw-filter-count {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 1px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.25s;
}

.hw-filter-btn:hover .hw-filter-count,
.hw-filter-btn.hw-active .hw-filter-count {
    background: #fff;
    color: #000
}

/* ---- MASONRY GRID ---- */
.hw-gallery-grid {
    columns: 4;
    column-gap: 22px;
}

@media (max-width: 1199px) {
    .hw-gallery-grid {
        columns: 3;
    }
}

@media (max-width: 767px) {
    .hw-gallery-grid {
        columns: 2;
    }
}

@media (max-width: 479px) {
    .hw-gallery-grid {
        columns: 1;
    }
}

/* ---- CARD ---- */
.hw-gallery-card {
    break-inside: avoid;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #006268;
    box-shadow: 0 6px 28px rgba(31, 31, 31, 0.10), 0 2px 8px rgba(233, 216, 74, 0.12);
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.28s;
}

.hw-gallery-card:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow:
        0 18px 48px rgba(233, 216, 74, 0.38),
        0 6px 20px rgba(31, 31, 31, 0.14);
    border-color: #006268;
}

.hw-card-img-wrap {
    overflow: hidden;
    display: block;
    line-height: 0;
}

.hw-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), filter 0.38s;
    filter: brightness(1);
}

.hw-gallery-card:hover img {
    transform: scale(1.10);
    filter: brightness(1.04) saturate(1.1);
}

/* yellow shimmer overlay on hover */
.hw-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(ellipse at center, rgba(233, 216, 74, 0.16) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.hw-gallery-card:hover .hw-card-overlay {
    opacity: 1;
}

/* zoom icon badge */
.hw-card-zoom-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #006268;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.6) rotate(-15deg);
    transition: opacity 0.3s, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 12px rgba(31, 31, 31, 0.22);
}

.hw-gallery-card:hover .hw-card-zoom-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ============================================
       LIGHTBOX
    ============================================ */
.hw-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 15, 15, 0.96);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.hw-lightbox-overlay.hw-lb-active {
    display: flex;
    animation: hw-lb-fadein 0.32s ease forwards;
}

.hw-lightbox-overlay.hw-lb-fadeout {
    animation: hw-lb-fadeout 0.28s ease forwards;

}

@keyframes hw-lb-fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hw-lb-fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.hw-lightbox-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}

@media (max-width: 767px) {
    .hw-lightbox-inner {
        padding: 60px 20px;
    }
}

/* Image wrapper */
.hw-lb-img-wrap {
    max-width: 860px;
    width: 100%;
    animation: hw-lb-zoom 0.38s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes hw-lb-zoom {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hw-lb-img-wrap.hw-lb-img-anim {
    animation: hw-lb-zoom 0.32s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hw-lb-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 3px solid #fff;
    box-shadow: 0 20px 70px rgba(233, 216, 74, 0.22), 0 8px 30px rgba(0, 0, 0, 0.6);
    display: block;
    max-height: calc(100vh - 140px);
    object-fit: contain;
}

/* Counter */
.hw-lb-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(233, 216, 74, 0.3);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* Close button */
.hw-lb-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(31, 31, 31, 0.7);
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.22s;
    z-index: 10001;
    backdrop-filter: blur(6px);
}

.hw-lb-close:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* Prev / Next buttons */
.hw-lb-prev,
.hw-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(233, 216, 74, 0.5);
    background: #fff;
    color: #000;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.22s, box-shadow 0.22s, transform 0.25s;
    box-shadow: 0 4px 20px rgba(233, 216, 74, 0.35);
}

.hw-lb-prev {
    left: 20px;
}

.hw-lb-next {
    right: 20px;
}

.hw-lb-prev:hover {
    background: #fff;
    box-shadow: 0 6px 28px rgba(233, 216, 74, 0.55);
    transform: translateY(-50%) scale(1.1);
}

.hw-lb-next:hover {
    background: #fff;
    box-shadow: 0 6px 28px rgba(233, 216, 74, 0.55);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 575px) {
    .hw-lb-prev {
        left: 6px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .hw-lb-next {
        right: 6px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* Touch swipe hint */
.hw-lb-swipe-hint {
    position: absolute;
    bottom: 22px;
    right: 26px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.06em;
    font-weight: 500;
}

@media (hover: hover) {
    .hw-lb-swipe-hint {
        display: none;
    }
}

/* ============================================
       LOADING SKELETON SHIMMER
    ============================================ */
.hw-gallery-card.hw-skeleton {
    border-color: transparent;
    box-shadow: none;
}

.hw-skeleton-img {
    width: 100%;
    padding-bottom: 75%;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: hw-shimmer 1.4s infinite;
    border-radius: 15px;
}

@keyframes hw-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
       MISC UTILITIES
    ============================================ */
.hw-yellow-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E9D84A;
}

/* ============================ Gallery page end ============================== */



/* ============================ Product page start ============================== */
==========================Banner==========================*/ .hw-tablet-banner {

    background: url(images/banner.jpg) center/cover no-repeat;
    position: relative;
    padding: 130px 0;
    overflow: hidden;

}

.hw-tablet-banner::before {

    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);

}

.hw-tablet-banner-content {

    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;

}

.hw-tablet-badge {

    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #E9D84A;
    border-radius: 40px;
    color: #E9D84A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;

}

.hw-tablet-banner h1 {

    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;

}

.hw-tablet-banner p {

    color: #ddd;
    font-size: 18px;

}

.hw-tablet-breadcrumb {

    margin-top: 20px;
    font-size: 15px;

}

.hw-tablet-breadcrumb a {

    color: #E9D84A;
    text-decoration: none;

}

.hw-tablet-breadcrumb span {

    color: #fff;
    margin: 0 6px;

}

/* ==========================
Gallery
========================== */

.hw-tablet-gallery {

    padding: 90px 0;

}

.hw-tablet-card {

    background: #fff;
    border: 3px solid #E9D84A;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: .4s;

}

.hw-tablet-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(233, 216, 74, .45);

}

.hw-tablet-card img {

    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: .4s;

}

.hw-tablet-card:hover img {

    transform: scale(1.08);

}

/* ==========================
Popup
========================== */

.hw-popup {

    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;

}

.hw-popup img {

    width: 70%;
    max-width: 900px;
    border-radius: 15px;
    border: 4px solid #E9D84A;
    animation: zoom .35s;

}

@keyframes zoom {

    from {

        transform: scale(.7);
        opacity: 0;

    }

    to {

        transform: scale(1);
        opacity: 1;

    }

}

/* ==========================
Close Button
========================== */

.hw-close {

    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 55px;
    color: #fff;
    cursor: pointer;
    transition: .3s;

}

.hw-close:hover {

    color: #E9D84A;
    transform: rotate(90deg);

}

/* ==========================
Prev Next
========================== */

.hw-prev,
.hw-next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #006268;

    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;

}

.hw-prev {

    left: 35px;

}

.hw-next {

    right: 35px;

}

.hw-prev:hover,
.hw-next:hover {

    background: #fff;
    transform: translateY(-50%) scale(1.08);

}

/* ==========================
Responsive
========================== */

@media(max-width:991px) {

    .hw-tablet-banner h1 {

        font-size: 45px;

    }

    .hw-popup img {

        width: 85%;

    }

}

@media(max-width:767px) {

    .hw-tablet-banner {

        padding: 90px 0;

    }

    .hw-tablet-banner h1 {

        font-size: 34px;

    }

    .hw-tablet-card img {

        height: 240px;

    }

    .hw-popup img {

        width: 92%;

    }

    .hw-prev,
    .hw-next {

        width: 45px;
        height: 45px;
        font-size: 20px;

    }

    .hw-prev {

        left: 10px;

    }

    .hw-next {

        right: 10px;

    }

    .hw-close {

        font-size: 40px;
        right: 20px;
        top: 15px;

    }
.about-img-wrap, .hh-intro-img-wrap, .hw-intro-img-wrap{
    height: 200px;
}
}

/* ============================ Product page end ============================== */


/* ============================ Tablets page start ============================== */

    /* ============================================================
       GALLERY SECTION
    ============================================================ */

    .hw-tablets-gallery {
      padding: 50px 0 ;
      background: #F8F9FA;
      margin-top: 70px;
    }

    .hw-gallery-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .hw-gallery-label {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      background: #006268;
      padding: 6px 18px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .hw-gallery-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #1F1F1F;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .hw-gallery-title span {
      color: #006268;
    }

    .hw-gallery-rule {
      width: 56px;
      height: 4px;
      background: #006268;
      border-radius: 4px;
      margin: 0 auto;
    }

    /* ============================================================
       PRODUCT CARD
    ============================================================ */

    .hw-product-col {
      margin-bottom: 28px;
    }

    .hw-product-card {
      border: 3px solid #006268;
      border-radius: 18px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 98, 104, 0.10);
      cursor: pointer;
      position: relative;
      transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s;
      outline: none;
    }

    .hw-product-card:hover,
    .hw-product-card:focus-visible {
      transform: translateY(-8px) scale(1.02);
      box-shadow:
        0 16px 48px rgba(0, 98, 104, 0.22),
        0 0 0 3px rgba(0, 98, 104, 0.12),
        0 0 24px rgba(0, 98, 104, 0.14);
      border-color: #004a4f;
    }

    /* Image wrap for zoom effect */
    .hw-card-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #f4f8f8;
    }

    .hw-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .hw-product-card:hover .hw-card-img {
      transform: scale(1.10);
    }

    /* Overlay hint on hover */
    .hw-card-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 98, 104, 0.0);
      transition: background 0.35s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hw-product-card:hover .hw-card-overlay {
      background: rgba(0, 98, 104, 0.12);
    }

    .hw-card-zoom-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.3s, transform 0.3s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .hw-product-card:hover .hw-card-zoom-icon {
      opacity: 1;
      transform: scale(1);
    }

    .hw-card-zoom-icon svg {
      width: 22px;
      height: 22px;
      stroke: #006268;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ============================================================
       LIGHTBOX POPUP
    ============================================================ */

    .hw-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.92);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      backdrop-filter: blur(6px);
    }

    .hw-popup-overlay.hw-popup-active {
      opacity: 1;
      visibility: visible;
    }

    /* Close button */
    .hw-popup-close {
      position: fixed;
      top: 22px;
      right: 28px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.10);
      border: 2px solid rgba(255, 255, 255, 0.25);
      color: #ffffff;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 9010;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
      backdrop-filter: blur(4px);
      line-height: 1;
    }
    .hw-popup-close:hover {
      background: #006268;
      border-color: #006268;
      color: #ffffff;
      transform: rotate(90deg);
    }

    /* Main image container */
    .hw-popup-img-wrap {
      position: relative;
      max-width: 88vw;
      max-height: 82vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hw-popup-img {
      max-width: 82vw;
      max-height: 78vh;
      width: auto;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.60);
      object-fit: contain;
      display: block;
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
      border: 3px solid rgba(0, 98, 104, 0.5);
    }

    .hw-popup-overlay.hw-popup-active .hw-popup-img {
      opacity: 1;
      transform: scale(1);
    }

    /* Nav Buttons: Prev / Next */
    .hw-popup-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #006268;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 9010;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.40);
      outline: none;
    }

    .hw-popup-nav:hover {
      background: #004a4f;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
      transform: translateY(-50%) scale(1.08);
    }

    .hw-popup-prev {
      left: 20px;
    }
    .hw-popup-next {
      right: 20px;
    }

    .hw-popup-nav svg {
      width: 24px;
      height: 24px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* Counter */
    .hw-popup-counter {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(6px);
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 50px;
      z-index: 9010;
      letter-spacing: 0.05em;
    }

    /* ============================================================
       PLACEHOLDER IMAGES (pharma product placeholders)
       Using SVG data URIs as image src — works without any server
    ============================================================ */

    /* ============================================================
       RESPONSIVE
    ============================================================ */

    /* Desktop: 4 per row = col-lg-3
       Tablet:  3 per row = col-md-4
       Mobile:  2 per row = col-6
       Small:   1 per row = col-12 (below 400px) */

    @media (max-width: 399px) {
      .hw-product-col {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    @media (max-width: 767px) {
      .hw-tablets-banner {
        min-height: 280px;
      }
      .hw-popup-prev { left: 10px; }
      .hw-popup-next { right: 10px; }
      .hw-popup-nav {
        width: 48px;
        height: 48px;
      }
      .hw-popup-nav svg { width: 20px; height: 20px; }
      .hw-popup-img {
        max-width: 92vw;
        max-height: 70vh;
        border-radius: 10px;
      }
      .hw-popup-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .hw-banner-circle-1 { width: 260px; height: 260px; }
      .hw-gallery-header { margin-bottom: 34px; }
    }

    /* Focus ring for accessibility */
    .hw-product-card:focus-visible {
      outline: 3px solid #006268;
      outline-offset: 4px;
    }

    .hw-popup-nav:focus-visible {
      outline: 3px solid #ffffff;
      outline-offset: 3px;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .hw-product-card,
      .hw-card-img,
      .hw-popup-overlay,
      .hw-popup-img {
        transition: none;
      }
    }
/* ============================ Tablets page end ============================== */






/* ====== FOOTER ====== */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
}

.footer-brand {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

footer img {
    width: 100px;
}

.footer-brand span {
    color: #fff;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #fff;
    border-color: #fff;
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-head {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: #fff;
    font-weight: 700;
}

.footer-links a:hover {
    color: #006268;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.fc-icon {
    color: #fff;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.fc-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.fc-text a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.fc-text a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
    color: #fff;
}

.footer-bottom span:hover {
    color: #006268;
}




/* ====== RESPONSIVE ====== */
@media(max-width:768px) {

    /* ========== home page start =========== */
    .section-pad {
        padding: 30px 0 ;
    }

    .about-content h2 {
        font-size: 30px !important;
    }

    .section-title {
        font-size: 25px !important;

    }

    .franchise-steps {
        flex-direction: column;
    }

    .franchise-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .process-step::after {
        display: none;
    }

    .process-line {
        flex-wrap: wrap;
        gap: 20px;
    }

    .counter-divider {
        display: none;
    }

    .prod-slider-wrap {
        padding: 0 40px;
    }

    .hero-visual {
        display: none;
    }
}