* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Open Sans', Arial, sans-serif;
    }
body {
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Header Styles */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #e5e5e5;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a {
    color: #666;
}

.top-links a:hover {
    color: #0056b3;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 13px;
}

.search-bar button {
    background: #0056b3;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Main Header */
.main-header {
    padding: 2px 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);


    position: fixed;
top: 0;          
left: 0;        
width: 100%;     
z-index: 1000; 
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.logo {
    flex: 0 0 200px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    padding: 10px 0;
    display: block;
}

.nav-links > li > a:hover {
    color: #0056b3;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
}

.dropdown li a:hover {
    background-color: #f9f9f9;
    color: #0056b3;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-actions a {
    color: #333;
    font-size: 18px;
    position: relative;
}

.header-actions a:hover {
    color: #0056b3;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0056b3;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/logo/vita.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding:10%;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title-main-page{
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.category-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0056b3;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #0056b3;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}


/* Brands Section */
.brands {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.brand-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    flex: 0 0 calc(20% - 20px);
    text-align: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
}

.brand-logo img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0056b3;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #444;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

.newsletter p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    background: #0056b3;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-logo {
        flex: 0 0 calc(33.33% - 20px);
    }
}
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }   
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }   
    .footer-content {
        grid-template-columns: 1fr;
    }
    .brand-logo {
        flex: 0 0 calc(50% - 20px);
    }
}
.small-logo {
    width: 120px;      /* حجم مناسب للوجو */
    height: auto;      /* يحافظ على النسبة */
    display: block;
    margin: 10px auto; /* يخليه في النص */
}
.product-details {
    text-align: center;
    padding: 50px 20px;
}

.product-details h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.product-details .product-img {
    width: 250px;
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
}

.product-details p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}
    /* Slider Styles */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease-in-out;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0056b3;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}
.slider-btn.prev {
    left: -10px;
}
.slider-btn.next {
    right: -10px;
}
.slider-btn:hover {
    background: #004494;
}
/* Fix width of items for sliding */
.slider-track .product-card {
    min-width: 250px;
}
/* Search Container */
.search-container {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}
.search-container input {
    padding: 8px 35px 8px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
    width: 200px;
    transition: 0.3s;
}

.search-container input:focus {
    border-color: #0e4d92;
    box-shadow: 0 0 8px rgba(14,77,146,0.3);
}
.search-dropdown li {
    padding: 10px;
    cursor: pointer;
    list-style: none;
    transition: 0.2s;
}
.search-dropdown li:hover {
    background-color: #f0f0f0;
}
.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
}
/* Dropdown */
.search-dropdown {
    position: absolute;
    top: 115%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    padding: 5px 0;
    z-index: 999;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.search-dropdown li {
    padding: 10px 12px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    font-size: 14px;
}
.search-dropdown li img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
}
.search-dropdown li:hover {
    background-color: #f0f0f0;
}
/* Tabs Buttons */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.tab-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.tab-btn.active {
    background: #0056b3;
    color: #fff;
}/* Tab Contents */
.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.tab-content {
    display: none; /* اخفي كل المحتوى افتراضياً */
    gap: 11%;
    flex-wrap: wrap;
    justify-content: center;
}
/* عندما يكون الـ tab نشط */
.tab-content.active {
    display: flex;
}
/* تصميم البطاقات داخل الـ tabs */
.tab-content .product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 250px; /* حجم موحد لكل بطاقة */
    text-align: center;
}
.tab-content .product-card:hover {
    transform: translateY(-5px);
}
.tab-content .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.tab-content .product-card h3 {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}
.tab-content .product-card p {
    font-size: 14px;
    color: #666;
    padding: 0 10px 10px;
}
.news-events-box .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-top: revert;
}
/* Grid */
.news-events-box .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* Card */
.news-events-box .news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-events-box .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.news-events-box .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.news-events-box .news-content {
    padding: 15px 20px;
}
.news-events-box .news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0056b3;
}
.news-events-box .news-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
/* Responsive */
@media (max-width: 992px) {
    .news-events-box .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .news-events-box .news-grid {
        grid-template-columns: 1fr;
    }
}
    /* Hero Section */
.fg-hero {
    background: linear-gradient(135deg, #a30000, #ff4d4d);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}
.fg-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}
.fg-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}
.fg-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 1px 1px 5px #b38600;
}
.fg-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
    color: #fff;
}
/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}
/* Title */
.section-title-Featured-Products {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #333;
}
/* Features Grid */
.fg-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}
.fg-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}
.fg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.fg-card i {
    font-size: 45px;
    color: #a30000;
    margin-bottom: 15px;
}
.fg-card h3 {
    margin-bottom: 10px;
    color: #222;
}
.fg-card p {
    color: #666;
    line-height: 1.6;
}
/* Buy Section */
.fg-buy {
    background: #fff5e6;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.fg-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.im-hero {
    background: linear-gradient(135deg, #007f3f, #00bfff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.im-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.im-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.im-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 1px 1px 5px #e0f5ff;
}

.im-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
    color: #fff;
}


/* Title */
.section-title-Immunace {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #007f3f;
}

/* Features Grid */
.im-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.im-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.im-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.im-card i {
    font-size: 45px;
    color: #007f3f;
    margin-bottom: 15px;
}

.im-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.im-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.im-buy {
    background: #e6f7ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.im-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.oc-hero {
    background: linear-gradient(135deg, #0e4d92, #5aa9ff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.oc-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.oc-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.oc-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.oc-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}

/* Title */
.section-title-Osteocare {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #0e4d92;
}

/* Features Grid */
.oc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.oc-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.oc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.oc-card i {
    font-size: 45px;
    color: #0e4d92;
    margin-bottom: 15px;
}

.oc-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.oc-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.oc-buy {
    background: #e8f2ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.oc-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.pp-hero {
    background: linear-gradient(135deg, #6a1b9a, #d8a9ff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.pp-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.pp-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.pp-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.pp-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}

/* Title */
.section-title-Perfectil-Platinum {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #6a1b9a;
}

/* Features Grid */
.pp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.pp-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.pp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pp-card i {
    font-size: 45px;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.pp-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.pp-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.pp-buy {
    background: #f7e9ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.pp-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}        
/* Hero Section */
.pf-hero {
    background: linear-gradient(135deg, #6a1b9a, #d8a9ff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.pf-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.pf-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.pf-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.pf-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}


/* Title */
.section-title-Perfectil {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #6a1b9a;
}

/* Features Grid */
.pf-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.pf-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.pf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pf-card i {
    font-size: 45px;
    color: #6a1b9a;
    margin-bottom: 15px;
}

.pf-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.pf-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.pf-buy {
    background: #f7e9ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.pf-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
.pc-hero {
background: linear-gradient(135deg, #a8e6a2, #ffffff);
padding: 80px 0;
display: flex;
justify-content: center;
align-items: center;
animation: fadeIn 1.2s ease-in-out;
flex-wrap: wrap;
color: #006400;
}

.pc-hero .hero-box {
display: flex;
align-items: center;
gap: 40px;
max-width: 1100px;
}

.pc-hero img {
width: 350px;
animation: float 3s ease-in-out infinite;
border-radius: 15px;
}

.pc-hero h1 {
font-size: 48px;
margin-bottom: 10px;
}

.pc-hero p {
font-size: 18px;
line-height: 1.8;
max-width: 470px;
}

/* Title */
.section-title-Pregnacare {
text-align: center;
font-size: 32px;
margin-top: 60px;
margin-bottom: 20px;
color: #228B22;
}

/* Features Grid */
.pc-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
max-width: 1100px;
margin: auto;
padding: 20px 0 50px;
}

.pc-card {
background: #ffffff;
padding: 25px;
border-radius: 15px;
text-align: center;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
transition: 0.4s;
animation: fadeIn 1s ease-in-out;
border-top: 5px solid #FFA500; /* برتقالي */
}

.pc-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pc-card i {
font-size: 45px;
color: #228B22; /* أخضر */
margin-bottom: 15px;
}

.pc-card h3 {
margin-bottom: 10px;
color: #222;
}

.pc-card p {
color: #666;
line-height: 1.6;
}

/* Buy Section */
.pc-buy {
background: #ffffff;
padding: 60px 0;
margin-top: 40px;
text-align: center;
}

.pc-buy img {
width: 220px;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}
.uvc-hero {
    background: linear-gradient(135deg, #ff7f50, #ffa07a);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.uvc-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.uvc-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.uvc-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.uvc-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}

/* Title */
.section-title-Ultra-Vitamin-C {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #ff7f50;
}

/* Features Grid */
.uvc-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.uvc-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.uvc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.uvc-card i {
    font-size: 45px;
    color: #ff7f50;
    margin-bottom: 15px;
}

.uvc-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.uvc-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.uvc-buy {
    background: #fff5f0;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.uvc-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}


/* Responsive */
@media(max-width: 768px){
    .uvc-hero .hero-box {
        flex-direction: column;
        text-align: center;
    }
}
/* Hero Section */
.uz-hero {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.uz-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #333;
    max-width: 1100px;
}

.uz-hero img {
    width: 300px;
    animation: float 3s ease-in-out infinite;
}

.uz-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.uz-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}

/* Title */
.section-title-Ultra-Zinc {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #555;
}

/* Features Grid */
.uz-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.uz-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.uz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.uz-card i {
    font-size: 45px;
    color: #555;
    margin-bottom: 15px;
}

.uz-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.uz-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.uz-buy {
    background: #f0f0f0;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.uz-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.wk-hero {
background: linear-gradient(135deg, #0057A8, #00aaff);
padding: 80px 0;
display: flex;
justify-content: center;
align-items: center;
animation: fadeIn 1.2s ease-in-out;
flex-wrap: wrap;
color: white;
}

.wk-hero .hero-box {
display: flex;
align-items: center;
gap: 40px;
max-width: 1100px;
}

.wk-hero img {
width: 350px;
animation: float 3s ease-in-out infinite;
border-radius: 15px;
}

.wk-hero h1 {
font-size: 48px;
margin-bottom: 10px;
}

.wk-hero p {
font-size: 18px;
line-height: 1.8;
max-width: 470px;
}

/* Title */
.section-title-WellKid {
text-align: center;
font-size: 32px;
margin-top: 60px;
margin-bottom: 20px;
color: #0057A8;
}

/* Features Grid */
.wk-features {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
max-width: 1100px;
margin: auto;
padding: 20px 0 50px;
}

.wk-card {
background: #fff;
padding: 25px;
border-radius: 15px;
text-align: center;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
transition: 0.4s;
animation: fadeIn 1s ease-in-out;
}

.wk-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.wk-card i {
font-size: 45px;
color: #FFC800;
margin-bottom: 15px;
}

.wk-card h3 {
margin-bottom: 10px;
color: #222;
}

.wk-card p {
color: #666;
line-height: 1.6;
}

/* Buy Section */
.wk-buy {
background: #e8f2ff;
padding: 60px 0;
margin-top: 40px;
text-align: center;
}

.wk-buy img {
width: 220px;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.wm-hero {
    background: linear-gradient(135deg, #0e4d92, #5aa9ff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.wm-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.wm-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.wm-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.wm-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
}

/* Title */
.section-title-Wellman {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #0e4d92;
}

/* Features Grid */
.wm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.wm-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.wm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.wm-card i {
    font-size: 45px;
    color: #0e4d92;
    margin-bottom: 15px;
}

.wm-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.wm-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.wm-buy {
    background: #e8f2ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.wm-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Hero Section */
.ww-hero {
    background: linear-gradient(135deg, #7e2fa8, #c35ae0);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.ww-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.ww-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.ww-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.ww-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 450px;
}

/* Section Title */
.section-title-Wellwoman {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #7e2fa8;
}

/* Features Grid */
.ww-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.ww-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.ww-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.ww-card i {
    font-size: 45px;
    color: #7e2fa8;
    margin-bottom: 15px;
}

.ww-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.ww-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.ww-buy {
    background: #f7f2ff;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.ww-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
/* Page Title */
.page-title-best-sellers {
    text-align: center;
    font-size: 36px;
    margin: 70px 0 30px;
    color: #0e4d92;
}

/* Grid Container */
.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Product Card */
.bs-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.bs-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f9f9f9;
    cursor: pointer;
    transition: transform 0.3s;
}

.bs-card img:hover {
    transform: scale(1.05);
}

.bs-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: #0e4d92;
}

.bs-card p {
    font-size: 14px;
    color: #666;
    padding: 0 10px 15px;
}

.bs-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
}

.card-wrapper {
    position: relative;
}
/* Hero Section */
.fg-hero {
    background: linear-gradient(135deg, #a30000, #ff4d4d);
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-in-out;
}

.fg-hero .hero-box {
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    max-width: 1100px;
}

.fg-hero img {
    width: 350px;
    animation: float 3s ease-in-out infinite;
}

.fg-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 1px 1px 5px #b38600;
}

.fg-hero p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 470px;
    color: #fff;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: #a30000;
}

/* Features Grid */
.fg-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0 50px;
}

.fg-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
    animation: fadeIn 1s ease-in-out;
}

.fg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.fg-card i {
    font-size: 45px;
    color: #a30000;
    margin-bottom: 15px;
}

.fg-card h3 {
    margin-bottom: 10px;
    color: #222;
}

.fg-card p {
    color: #666;
    line-height: 1.6;
}

/* Buy Section */
.fg-buy {
    background: #fff5e6;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.fg-buy img {
    width: 220px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

        /* ========== FOOTER ========== */
.main-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #d4003b;
}

.footer-col p {
    line-height: 1.7;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #efe6e6;
    padding-left: 5px;
}

.footer-social a {
    color: #fff;
    margin-right: 12px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00e5ff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 25px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ddd;
}
/* Glow Hover Effects */
.main-footer a:hover {
    text-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff;
}
/* ------------------ GLOBAL ------------------ */

.vx-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.vx-title-lg, .vx-title-md, .vx-title-sm {
    margin: 0 0 15px 0;
}
/* ------------------ HERO ------------------ */
.vx-hero-section {
    background: url('images/EVENTS&NEWS/TEAM.jpeg') center/cover no-repeat;
    color: #fff;
    padding: 30%;
    text-align: center;
}

.vx-hero-subtext {
    font-size: 1.3rem;
}

/* ------------------ ABOUT ------------------ */
.vx-about-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}
.vx-about-image {
    flex: 1 1 400px;
    border-radius: 15px;
    width: 20%;
}
.vx-about-textbox {
    flex: 1 1 400px;
}
.vx-about-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.vx-about-paragraph {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
/* ------------------ TEAM ------------------ */
.vx-team-area {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}
.vx-team-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.vx-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.vx-team-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.vx-team-card:hover {
    transform: translateY(-10px);
}
.vx-team-avatar {
    border-radius: 50%;
    width: 120px;
    margin-bottom: 15px;
}
.vx-team-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.vx-team-role {
    font-size: 0.95rem;
    color: #555;
}

/* ------------------ VALUES ------------------ */
.vx-values-area {
    padding: 80px 0;
    text-align: center;
}
.vx-values-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.vx-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.vx-value-box {
    flex: 1 1 250px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.vx-value-box:hover {
    transform: translateY(-10px);
}
.vx-value-icon {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 15px;
}
.vx-value-heading {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.vx-value-paragraph {
    font-size: 0.95rem;
    color: #555;
}

/* ------------------ STATS ------------------ */
.vx-stats-section {
    background: #0077b6;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.vx-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.vx-stat-item {
    flex: 1 1 200px;
}
.vx-stat-number {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.vx-stat-label {
    font-size: 1rem;
}
/* ------------------ FOOTER ------------------ */
.vx-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}
.vx-footer-text {
    margin: 0;
    font-size: 0.95rem;
}
/* ------------------ RESPONSIVE ------------------ */
@media(max-width: 900px){
    .vx-about-block {
        flex-direction: column;
    }
    .vx-team-grid, .vx-values-grid, .vx-stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}


/* News Ticker Container */
.news-ticker {
    width: 100%;
    background: #111;
    color: white;
    overflow: hidden;
    padding: 4px 0;
    position: sticky;  /* 👈 يخليه يمشي مع الاسكرول */
    top: 65px;            /* 👈 يبقى ثابت فوق */
    z-index: 9999;     /* 👈 يبقى فوق كل العناصر */
}


/* Moving Track */
.news-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
    font-size: 18px;
}

/* Each news item */
.news-item {
    display: inline-block;
    margin-right: 50px;
}

/* Animation Keyframes */
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
