/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

/* ===== TOP BAR CSS ===== */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: #f5f5f5;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-dropdowns {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ===================== DROPDOWN ===================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #000;
}

.flag-icon {
    width: 18px;
    height: auto;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 2000;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    text-decoration: none;
    color: #000;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #00a889;
}

/* ===================== TOP SCROLLER ===================== */
.top-scroll {
    background: #00a889;
    color: white;
    padding: 7px 0;
    font-size: 14px;
    text-align: center;
}

.top-scroll .top-link {
    color: yellow;
    font-weight: 600;
    text-decoration: none;
}

.top-scroll .top-link:hover {
    text-decoration: underline;
}

/* ===================== NAVBAR - DESKTOP ===================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
    padding: 5px;
}

blood {
    display: inline;
}

blood .text {
    color: #008000;
    font-weight: bold;
    font-size: 24px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

blood .text:hover,
blood .text:active {
    color: #ff0000;
    cursor: pointer;
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: #00a889;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 9999;
}

/* Navbar Links */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar a {
    margin: 0 12px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #00a889;
}

.navbar .dropdown {
    margin: 0 12px;
}

.cart {
    font-size: 24px;
    margin-left: 10px;
    cursor: pointer;
    color: #000;
    transition: color 0.3s ease;
}

.cart:hover {
    color: #00a889;
}

/* ===================== BANNER ===================== */
.main-banner {
    width: 100%;
    height: 520px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #a9eee6;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.banner-images {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 455px;
    border-radius: 20px;
    overflow: hidden;
    background: #a9eee6;
    position: relative;
    margin: 0 auto;
}

.banner-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
}

.banner-images img.active {
    opacity: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    text-align: center;
    z-index: 3;
    padding: 0 15px;
    width: 90%;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.banner-content p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.banner-btn {
    margin-top: 25px;
    display: inline-block;
    padding: 14px 20px;
    background: #ff6600;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.banner-btn:hover {
    background: #e05500;
}

/* ===================== VIDEO SLIDER ===================== */
.video-slider {
    padding: 80px 20px;
    background: #ffffff;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 137, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.video-slider .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.video-slider .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00a889, #00d4aa);
    margin: 15px auto 0;
    border-radius: 2px;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.slider-container {
    display: flex;
    gap: 30px;
    padding: 20px 10px;
    margin: 0 auto;
    justify-content: center;
    max-width: 95%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #00a889 #f0f0f0;
}

.slider-container::-webkit-scrollbar {
    height: 8px;
}

.slider-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
    margin: 0 20px;
}

.slider-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00a889, #00d4aa);
    border-radius: 10px;
}

.slider-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #008c72, #00a889);
}

.slide {
    position: relative;
    flex: 0 0 260px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.slide:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10;
}

.slide img {
    width: 260px;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.slide:hover img {
    box-shadow: 0 20px 50px rgba(0, 168, 137, 0.3);
    border-color: #00a889;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.slide:hover::before {
    opacity: 1;
}

.btn-group {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.slide:hover .btn-group {
    opacity: 1;
    bottom: 25px;
}

.insta-btn,
.yt-btn {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.insta-btn {
    color: #E1306C;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}

.yt-btn {
    color: #FF0000;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.insta-btn:hover {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.yt-btn:hover {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.insta-btn i,
.yt-btn i {
    font-size: 18px;
}

/* Play Icon Overlay */
.slide::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.slide:hover::after {
    opacity: 0.9;
    font-size: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-slider {
        padding: 60px 15px;
    }
    
    .video-slider .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .slider-container {
        gap: 20px;
        padding: 15px 5px;
    }
    
    .slide {
        flex: 0 0 200px;
    }
    
    .slide img {
        width: 200px;
        height: 300px;
        border-radius: 15px;
    }
    
    .btn-group {
        gap: 8px;
    }
    
    .insta-btn,
    .yt-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .insta-btn i,
    .yt-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-slider .section-title {
        font-size: 26px;
    }
    
    .slide {
        flex: 0 0 160px;
    }
    
    .slide img {
        width: 160px;
        height: 250px;
    }
    
    .slider-container {
        gap: 15px;
    }
}
/* ===================== PRODUCT SECTION ===================== */
.product-section {
    padding: 50px 20px;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 5px;
}

.product-card .title,
.product-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.product-rating .stars,
.stars {
    color: #ffa500;
    font-size: 14px;
}

.product-rating .review-count,
.review-count {
    color: #666;
    font-size: 12px;
}

.product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.product-card .add-btn {
    width: 100%;
    padding: 10px 20px;
    background: #00a889;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    margin-top: auto;
}

.product-card .add-btn:hover {
    background: #008f73;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e63946;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.product-badge.bestseller {
    background: #ff9800;
}

.product-badge.new {
    background: #00a889;
}


@media (max-width: 480px) {

    /* PRODUCTS */
    .products-grid {
        display: flex;
    }
    .products-grid .product-card {
        width: 48%;
        max-width: 48%;
    }

    /* COMBO */
    .combo-container {
        display: flex;
    }
    .combo-container .combo-card {
        width: 48%;
        max-width: 48%;
    }

    /* BEST SELLERS */
    .best-seller-container {
        display: flex;
    }
    .best-seller-container .best-card {
        width: 48%;
        max-width: 48%;
    }
}


/* ===================== COMBO SECTION ===================== */
/* ===================== COMBO SECTION ===================== */
.combo-section {
    padding: 50px 20px;
    background: #f8f9fc;
}

/* Container */
.combo-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

/* Combo Card */
.combo-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;

    /* Desktop: 4 per row */
    flex: 1 1 calc(25% - 25px);
    max-width: calc(25% - 25px);
}

/* Hover Effect */
.combo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image */
.combo-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 5px;
}

/* Title */
.combo-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.combo-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Old Price */
.combo-card .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

/* Add Button */
.combo-card .add-btn {
    width: 100%;
    background: #00a889;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    transition: background 0.3s ease;
}

.combo-card .add-btn:hover {
    background: #008f73;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet → 2 combos */
@media (max-width: 991px) {
    .combo-card {
        flex: 1 1 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
}

/* Mobile → 2 combos */
@media (max-width: 576px) {
    .combo-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .combo-card img {
        height: 200px;
    }
}

/* ===================== BEST SELLERS ===================== */
.best-seller-section {
    padding: 50px 20px;
    background: #f8f9fc;
}

.best-seller-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Container */
.best-seller-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 30px;
    flex-wrap: wrap; /* 🔥 no scroll */
}

/* Card */
.best-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;

    /* Desktop → 4 per row */
    flex: 1 1 calc(25% - 25px);
    max-width: calc(25% - 25px);
}

/* Hover */
.best-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Image */
.best-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 5px;
}

/* Title */
.best-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating */
.best-card .stars {
    color: #ffa500;
    font-size: 16px;
    margin-bottom: 5px;
}

.best-card .review-count {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

/* Price */
.best-card .best-price {
    font-size: 22px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 15px;
}

.best-card .best-old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 400;
}

/* Buttons */
.best-card .add-btn,
.best-card .black-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: auto;
    border: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.best-card .add-btn {
    background: #00a889;
    color: #fff;
}

.best-card .add-btn:hover {
    background: #008f73;
}

.best-card .black-btn {
    background: #888787;
    color: #151414;
}

.best-card .black-btn:hover {
    background: #333;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet → 2 cards */
@media (max-width: 991px) {
    .best-card {
        flex: 1 1 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
}

/* Mobile → 2 cards */
@media (max-width: 576px) {
    .best-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .best-card img {
        height: 200px;
    }
}

/* ===================== SEE ALL BUTTON ===================== */
.see-all-btn-container {
    text-align: center;
    margin: 40px 0 50px;
    padding: 0 15px;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    background: #00a889;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    min-width: 220px;
    box-shadow: 0 6px 18px rgba(0, 168, 137, 0.25);
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: #008f73;
    transform: translateY(-2px);
}

/* ===================== SERVICES ===================== */
.services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(0, 168, 137, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.services-heading {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.services-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00a889, #00d4aa);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: left;
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 168, 137, 0.1), transparent);
    transition: 0.5s;
}

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

.service-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 168, 137, 0.2));
    background: transparent;
    mix-blend-mode: multiply;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    text-align: left;
    width: 100%;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    font-weight: 400;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 168, 137, 0.15);
    border-color: #00a889;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf9 100%);
}

.service-card:hover img {
    transform: scale(1.15) rotate(5deg);
}

.service-card:hover h3 {
    color: #008c72;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-card img {
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}
/* ===================== FOUNDER DOCTOR SECTION ===================== */
.founder-doctor-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
    padding: 80px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.founder-doctor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 137, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.founder-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.section-main-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2c3e50;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.section-main-heading::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00a889, #00d4aa);
    margin: 15px auto 0;
    border-radius: 2px;
}

.founder-content {
    width: 55%;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.founder-content::before {
    
    position: absolute;
    top: -30px;
    left: 40px;
    font-size: 50px;
    background: linear-gradient(135deg, #00a889, #00d4aa);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 168, 137, 0.3);
}

.founder-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 168, 137, 0.15);
}

.founder-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.founder-content p:first-of-type::first-letter {
    font-size: 48px;
    font-weight: 700;
    color: #00a889;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 5px;
}

.doctor-meta {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f0fdf9 0%, #e0f9f3 100%);
    border-radius: 12px;
    border-left: 4px solid #00a889;
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.8;
}

.doctor-meta strong {
    color: #00a889;
    font-weight: 700;
    display: inline-block;
    min-width: 140px;
}

.founder-image {
    width: 45%;
    display: flex;
    justify-content: center;
    position: relative;
}

.arch-frame {
    width: 420px;
    height: 500px;
    position: relative;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #00a889, #008c72, #006b59);
    padding: 8px;
}

.arch-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.arch-frame:hover::before {
    left: 100%;
}

.arch-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 35px 80px rgba(0, 168, 137, 0.3);
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 195px 195px 15px 15px;
    background: #fff;
    transition: transform 0.4s ease;
}

.arch-frame:hover img {
    transform: scale(1.05);
}

/* Decorative Badge */
.arch-frame::after {
    content: '✓ Certified';
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: linear-gradient(135deg, #00a889, #00d4aa);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 20px rgba(0, 168, 137, 0.4);
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-container {
        gap: 50px;
    }
    
    .arch-frame {
        width: 350px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .founder-doctor-section {
        padding: 60px 15px;
    }
    
    .section-main-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .founder-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .founder-content,
    .founder-image {
        width: 100%;
    }
    
    .founder-content {
        padding: 35px 25px;
    }
    
    .arch-frame {
        width: 300px;
        height: 360px;
    }
    
    .doctor-meta {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-main-heading {
        font-size: 28px;
    }
    
    .founder-content {
        padding: 25px 20px;
    }
    
    .founder-content p {
        font-size: 14px;
    }
    
    .arch-frame {
        width: 260px;
        height: 320px;
    }
    
    .doctor-meta {
        font-size: 14px;
        padding: 15px;
    }
}
/* ===================== FAQ SECTION ===================== */
.faq-section {
    padding: 60px 20px;
    background: #f5fcff;
}

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #00a889;
    margin-bottom: 30px;
}

.faq-item {
    background: #e6fff7;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #c6f5e8;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #e6fff7;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #008f73;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 10px 0 15px;
    color: #444;
}

/* ===================== BLOG SECTION ===================== */
.blog-section {
    padding: 60px 20px;
    background: #f4fffd;
}

.blog-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title h2 {
    font-size: 36px;
    color: #00a889;
    font-weight: 700;
}

.blog-title p {
    font-size: 16px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.blog-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.blog-img-box img,
.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.12);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
}

.blog-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00a889;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.blog-btn:hover {
    background: #008a74;
}

.blog-view-all {
    text-align: center;
    margin-top: 40px;
}

.blog-view-all a {
    display: inline-block;
    padding: 14px 30px;
    background: #008f73;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.blog-view-all a:hover {
    background: #006e59;
}


/* BLOG META (Views & Comments) */
.blog-meta {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.blog-meta i {
    color: #00a889;
    font-size: 14px;
}


/* ===================== FOOTER ===================== */
.ajmal-footer {
    background: linear-gradient(180deg, #050505 0%, #0b0b0b 50%, #050505 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Borders – soft glossy effect */
.footer-policy,
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

/* Policy links */
.footer-policy a {
    color: #eaeaea;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
}

.footer-policy a:hover {
    color: #d4af37; /* Gold hover */
}

/* Footer content */
.footer-main {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: center;
}

/* Logo – looks premium on black */
.footer-col img {
    width: 90px;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}

/* Brand name */
.brand-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
    color: #d4af37; /* Gold text */
}

/* Text */
.footer-col p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    color: #cccccc;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #d4af37;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #111;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #d4af37;
    color: #000;
}

/* Bottom area */
.footer-bottom {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    text-align: center;
    color: #bfbfbf;
}

/* Payment icons */
.payment-icons img {
    height: 24px;
    margin: 3px;
    filter: brightness(1.1);
}

.footer-policy {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    flex-wrap: wrap;
    gap: 15px;
    padding: 12px 10px;
    text-align: center;
}

/* ===================== CART & MODALS ===================== */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    border-radius: 10px 0 0 10px;
}

#cart-sidebar.active {
    right: 0;
}

#cart-count-header {
    background: #e63946;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
}

.contact-floating {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-floating a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.3s;
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25D366;
}

.contact-floating a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

/* ===================== RESPONSIVE - TABLET ===================== */
@media (max-width: 1024px) {
    .products-grid,
    .combo-container,
    .best-seller-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-banner {
        height: 430px;
        padding: 20px;
    }
    
    .banner-content h1 {
        font-size: 34px;
    }
    
    .founder-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .founder-content,
    .founder-image {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }
    
    header {
        padding: 12px 20px;
    }
    
    .main-banner {
        height: 360px;
        padding: 15px;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .products-grid,
    .combo-container,
    .best-seller-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-doctor-section {
        padding: 50px 15px;
    }
    
    .section-main-heading {
        font-size: 26px;
        margin-bottom: 35px;
    }
    
    .founder-content {
        width: 100%;
        background: #ffffff;
        padding: 22px 18px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        text-align: left;
    }
    
    .arch-frame {
        width: 85%;
        max-width: 320px;
    }
}

/* ===================== MOBILE RESPONSIVE (NAVBAR FIX) ===================== */
@media (max-width: 480px) {
    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Hide Desktop Navbar by Default */
    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #ffffff;
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
        z-index: 999;
        padding: 0;
    }
    
    /* Show Navbar When Active */
    .navbar.active {
        display: flex !important;
    }
    
    /* Navbar Links - Full Width */
    .navbar a {
        padding: 15px 20px;
        margin: 0;
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }
    
    /* Dropdown in Mobile */
    .navbar .dropdown {
        width: 100%;
        margin: 0;
    }
    
    .navbar .dropdown .dropbtn {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
        font-size: 15px;
    }
    
    .navbar .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f9f9f9;
        width: 100%;
        border-radius: 0;
    }
    
    .navbar .dropdown-content a {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Cart in Mobile Menu */
    .navbar .cart {
        padding: 15px 20px;
        margin: 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    
    /* Header Adjustments */
    header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 60px;
        width: 60px;
    }
    
    blood .text {
        font-size: 18px;
    }
    
    /* Banner Mobile */
    .main-banner {
        height: auto;
        padding: 12px;
    }
    
    .banner-images {
        height: 200px;
        max-height: none;
        border-radius: 12px;
    }
    
    .banner-images img {
        object-fit: cover;
        object-position: center;
    }
    
    .banner-content {
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
    }
    
    .banner-content h1 {
        font-size: 22px;
        line-height: 28px;
    }
    
    .banner-content p {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Products Mobile - 2 Columns */
    .product-section,
    .combo-section,
    .best-seller-section {
        padding: 30px 15px;
    }
    
    .section-title,
    .best-seller-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .products-grid,
    .combo-container,
    .best-seller-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card,
    .combo-card,
    .best-card {
        padding: 12px;
        max-width: 100%;
    }
    
    .product-card img,
    .combo-card img,
    .best-card img {
        height: 150px;
    }
    
    .product-card .title,
    .combo-card h3,
    .best-card h3 {
        font-size: 13px;
        min-height: 35px;
    }
    
    .product-card .price,
    .combo-card .price,
    .best-card .best-price {
        font-size: 16px;
    }
    
    .product-card .add-btn,
    .combo-card .add-btn,
    .best-card .add-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* See All Button Mobile */
    .see-all-btn-container {
        margin: 25px 0 40px;
    }
    
    .see-all-btn {
        width: 100%;
        max-width: 320px;
        font-size: 15px;
        padding: 14px 0;
    }
    
    /* Video Slider Mobile */
    .video-slider {
        padding: 20px 0;
    }
    
    .slider-container {
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-img-box {
        height: 180px;
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-policy {
        gap: 10px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Founder Section Mobile */
    .section-main-heading {
        font-size: 24px;
    }
    
    .founder-content {
        padding: 20px 16px;
    }
    
    .founder-content p {
        font-size: 13.8px;
    }
    
    .arch-frame {
        width: 90%;
        max-width: 260px;
    }
}

/* ===================== EXTRA SMALL MOBILE ===================== */
@media (max-width: 400px) {
    .products-grid,
    .combo-container,
    .best-seller-container {
        gap: 10px;
    }
    
    .product-card,
    .combo-card,
    .best-card {
        padding: 10px;
    }
    
    .product-card img,
    .combo-card img,
    .best-card img {
        height: 130px;
    }
    
    .product-card .title,
    .combo-card h3,
    .best-card h3 {
        font-size: 12px;
        min-height: 30px;
    }
}

/* ===================== HOVER EFFECTS DISABLED ON MOBILE ===================== */
@media (max-width: 768px) {
    .product-card:hover,
    .combo-card:hover,
    .best-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}



/* ================= FLOATING CART & ACCOUNT ICONS ================= */

.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* Common Button Style */
.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

/* Cart Button */
.cart-btn {
    background: linear-gradient(135deg, #00a889, #007f67);
}

.cart-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #007f67, #00a889);
}

/* User / Account Button */
.user-btn {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.user-btn:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, #e65100, #ff9800);
}

/* Icon Center Fix */
.floating-btn i {
    line-height: 1;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
}

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


/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
