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

body {
    font-family: "Poppins", sans-serif;
    color: #444;
    background-color: #f8f9fa;
}

.top-bar {
    background: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar span {
    color: #ff7400;
    font-weight: bold;
}

.header-main {
    background: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #188A8B;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #188A8B;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #188A8B;
}

.contact-info i {
    color: #188A8B;
    font-size: 1.5rem;
    margin-right: 10px;
}

.carousel-item img {
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.footer {
    background: #222;
    color: #bbb;
    padding: 60px 0 30px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 25px;
}

.btn-submit {
    background: #188A8B;
    border: none;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
}

.btn-submit:hover {
    background: #188A8B;
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff7400;
}

.form-control-custom {
    border: 1px solid #ced4da;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #188A8B;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-contact {
    background: #188A8B;
    color: white;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #188A8B;
    color: white;
    transform: translateY(-2px);
}

.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.heading-underline {
    width: 60px;
    height: 3px;
    background: #188A8B;
    margin-bottom: 20px;
}

#btnScrollUp {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    border: none;
    background-color: #188A8B;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#btnScrollUp:hover {
    background-color: #188A8B;
}

.text-vetherbocare {
    color: #188A8B;
}

.bg-vetherbocare {
    background-color: #188A8B;
}

.vetherbocare-hover:hover {
    background-color: #188A8B;
}

section {
    padding-top: 20px;
}


:root {
    --primary-color: #188A8B;
    --dark-bg: #000000;
    --topbar-bg: #1a1a1a;
}

.top-bar {
    background: var(--topbar-bg);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-main {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 60px;
    transition: 0.3s;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-left: 15px;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(24, 138, 139, 0.05);
}

.nav-link i {
    color: var(--primary-color);
    margin-right: 5px;
}

.navbar-toggler {
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

@media (min-width: 992px) {
    .header-main {
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .top-bar {
        text-align: center;
    }
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #188A8B;
}

.pimg-container {
    background: #fff;
    padding: 10px;
    text-align: center;
    height: 180px;
    /* Fixed height for symmetry */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pimg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: 0.4s;
}

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

.p-content {
    padding: 12px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f8f9fa;
}

.phead {
    color: #188A8B;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    min-height: 38px;
    /* Keeps titles aligned */
}

.info-label {
    font-weight: 600;
    color: #888;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
    letter-spacing: 0.5px;
}

.badge-info-custom {
    background: #f1f8f1;
    color: #188A8B;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 2px;
    display: inline-block;
    border: 1px solid #e2f0e2;
    width: fit-content;
}

.pack-text {
    font-size: 0.8rem;
    color: #555;
    margin-top: 2px;
}

.btn-view {
    background-color: #188A8B;
    color: white;
    border: none;
    font-weight: 600;
    width: 100%;
    padding: 7px 0;
    font-size: 0.85rem;
    margin-top: 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-view:hover {
    background-color: #188A8B;
    color: white;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}

.pimg-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.pimg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-image-box {
    background: #fff;
    padding: 8px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.details-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.detail-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #188A8B;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 8px;
}

.detail-heading i {
    color: #188A8B;
    margin-right: 10px;
    font-size: 1.1rem;
}

.usp-list p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.iappear {
    color: #188A8B;
    margin-right: 12px;
    margin-top: 5px;
    font-size: 0.85rem;
}

.info-badge {
    background: #e8f5e9;
    color: #188A8B;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #c8e6c9;
}

.custom-footer-link {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.custom-footer-link:hover {
    opacity: 1;
    padding-left: 8px;
    color: #188A8B !important;
}

.custom-footer-link i {
    font-size: 0.7rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
}

.call-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 150px;
    right: 30px;
    background-color: #007bff;
    color: #FFF;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.testimonial-section {
    background: #f8f9fa;
    padding: 10px 0;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: 0.3s;
    height: 100%;
}

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

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 600;
    margin-top: 10px;
}

.testimonial-role {
    font-size: 14px;
    color: gray;
}