/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E31C25;
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #808080;
    --light-grey: #f5f5f5;
    --dark-grey: #333333;
    --gradient-red: linear-gradient(135deg, #E31C25 0%, #ff4444 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--primary-black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(227, 28, 37, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.navbar {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-red);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-black);
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    background: url('../images/hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 70px;
}

@media (max-width: 600px) {
    .hero-banner {
        background: url('../images/mobile-bnr.jpg') center/cover no-repeat;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-banner .container {
    margin-left: 50px !important;
    margin-right: auto;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--text-white);
    max-width: 600px;
    margin-left: 0;
    padding-left: 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-protein {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--text-white);
    text-transform: uppercase;
}

.btn {
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(227, 28, 37, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 28, 37, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-red);
}

.section-header p {
    font-size: 18px;
    color: var(--text-grey);
}

/* Categories Section */
.categories-section {
    background: var(--light-grey);
}

.categories-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.categories-slider a{
    text-decoration:none;
}

.category-card {
    background: var(--text-white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 28, 37, 0.1) 0%, rgba(227, 28, 37, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227, 28, 37, 0.3);
}

.category-image {
    width: 200px;
    height:160px;
    overflow: hidden;
	padding:1px;
    margin:0 auto;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
	border-radius:50px;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--text-white);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.category-card:hover .category-icon {
    transform: translate(-50%, -50%) rotate(360deg);
}

.category-card > h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-black);
    padding: 25px 20px 10px;
    position: relative;
    z-index: 2;
}

.category-card > p {
    font-size: 14px;
    color: var(--text-grey);
    padding: 0 20px 25px;
    position: relative;
    z-index: 2;
}

.no-categories {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-grey);
    font-size: 18px;
    grid-column: 1 / -1;
}

/* About Section */
.about-section {
    background: var(--text-white);
}

.about-banner {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
}

.about-feature i {
    color: var(--primary-red);
}

.about-img-wrapper {
    position: relative;
    height: 400px;
}

.about-img-1,
.about-img-2 {
    position: absolute;
    width: 70%;
    height: 70%;
    background: url("../images/img2.jpg");
	background-size:cover;
    border-radius: 20px;
    opacity: 1;
}

.about-img-1 {
    top: 0;
    left: 0;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    background: url("../images/img1.jpg");
	background-size:100% 100%;
    border: 3px solid var(--primary-red);
}

/* Choose Us Section */
.choose-us-section {
    background: var(--light-grey);
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.choose-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 28, 37, 0.2);
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
    background: var(--gradient-red);
    color: var(--text-white);
    transform: scale(1.1);
}

.choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.choose-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: var(--text-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--text-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(227, 28, 37, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 250px;
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-red);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.product-info > p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating span {
    font-size: 14px;
    color: var(--text-grey);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
}

.original-price {
    font-size: 16px;
    color: var(--text-grey);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--gradient-dark);
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--gradient-red);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-dark);
}

.testimonials-section .section-header h2 {
    color: var(--text-white);
}

.testimonials-section .section-header p {
    color: var(--text-grey);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(227, 28, 37, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content i {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.8;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.author-info p {
    font-size: 14px;
    color: var(--text-grey);
}

/* Contact Section */
.contact-section {
    background: var(--light-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.contact-text p {
    font-size: 14px;
    color: var(--text-grey);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-red);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--text-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    width: 100%;
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section .footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--gradient-red);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-grey);
}

.footer-bottom p {
    color: var(--text-grey);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-protein {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 40px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        text-align: center;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-protein {
        font-size: 36px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-protein {
        font-size: 28px;
    }
    
    .categories-slider,
    .choose-us-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}
