* {
    font-family: 'Poppins', sans-serif !important;
}

/* --- Popup overlay --- */
.demo-one {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* --- Popup box --- */
.demo-two {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 380px;
    width: 90%;
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.demo-three {
    background-color: #0b73de;
    color: white;
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.demo-three h2 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.demo-four {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}

.demo-two form {
    padding: 20px;
}

.demo-two input[type="text"],
.demo-two input[type="tel"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    margin-bottom: 12px;
}

.demo-five {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-five img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.demo-six {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #66b031;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.demo-six:hover {
    background-color: #4a8023;
}

.demo-seven {
    color: red;
    font-size: 13px;
}

/* --- Open button --- */
.demo-eight {
    padding: 12px 24px;
    background-color: #0b73de;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.demo-eight:hover {
    background-color: #095fbb;
}

/* List Icons in About Section */
.list-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-size: 18px;
    color: #ffffff;
}

/* Sticky Product Bar */
.sticky-product-bar {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 9999;
}

.product-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.product-info .price {
    display: block;
    margin-top: 4px;
    color: #66B032;
    font-size: 14px;
    font-weight: 600;
}

.add-cart-btn {
    background: #457721;
    border: none;
    color: rgb(255, 255, 255);
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.2s ease;
}

.add-cart-btn:hover {
    background: #39611c;
}

/* Footer Follow Us */
.follow_us {
    margin-bottom: 20px;
}

.follow_us p {
    margin: 0 0 10px 0;
    color: #ffffff;
}

.follow_us ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.follow_us li {
    margin: 0;
}

.follow_us a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.follow_us a:hover {
    color: #cccccc;
}

.follow_us i {
    font-size: 24px;
}

/* Responsive Image in Footer */
.responsive-img {
    width: 100%;
    max-width: 100px;
}

@media (max-width: 200px) {
    .responsive-img {
        transform: scale(0.7);
        transform-origin: top left;
    }
}

/* CSS toggle behavior for Read More */
.demo-one-checkbox:checked~.demo-one-text {
    max-height: 1000px !important;
}

.demo-one-checkbox:not(:checked)~.demo-one-label::after {
    content: "";
}

.demo-one-checkbox:checked~.demo-one-label::after {
    content: "";
}

.demo-one-checkbox:not(:checked)~.demo-one-label {
    content: "Read More";
}

.demo-one-checkbox:checked~.demo-one-label {
    content: "Read Less";
}

/* =========================================
   INSTAGRAM SLIDER FIX
   ========================================= */
.bd-instagram-area .swiper-slide {
    /* Ensures slides don't collapse */
    height: auto;
}

.bd-instagram-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px; /* Matches your html radius-8 class */
}

/* =========================================
   TESTIMONIAL SLIDER STYLING
   ========================================= */

/* The Card Container */
.testimonial-wrapper {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px; /* Adds space for shadow */
    transition: .3s;
    border: 1px solid #eee;
}

.testimonial-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

/* Avatar Section Layout */
.testimonial-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar Image */
.avatar-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0b73de; /* Optional: Brand color border */
}

/* Name and Designation */
.avatar-meta-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1c2539;
}

.avatar-meta p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* Testimonial Text */
.testimonial-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* Pagination Dots */
.bd-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
}

.bd-pagination .swiper-pagination-bullet-active {
    background-color: #0b73de; /* Brand color */
    width: 25px;
    border-radius: 5px;
}