* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F5CF27;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #252525;
    --light-bg: #f5f5f5;
    --light-secondary: #ffffff;
    --light-tertiary: #e8e8e8;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #888888;
    --text-light-gray: #cccccc;
    --text-dark-gray: #666666;
}

.whatsapp {
    position: fixed;
    z-index: 9991;
    right: 10px;
    bottom: 50px;
    cursor: pointer;
    width: 65px;
    height: 65px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    transition: bottom 0.2s;
}
.whatsapp img{
	width:99.9%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(245, 207, 39, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 207, 39, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(245, 207, 39, 0.8);
        transform: scale(1.05);
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.animated-text {
    text-align: left;
    z-index: 2;
    padding-left: 10%;
    max-width: 600px;
}

.animated-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 0;
    animation: slideInLeft 1s ease-out;
    line-height: 1.1;
}

.animated-text h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    animation: slideInLeft 1s ease-out 0.2s backwards;
    font-weight: 600;
}

.animated-text h3 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0;
    animation: slideInLeft 1s ease-out 0.3s backwards;
    line-height: 1;
}

.animated-text h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out 0.5s backwards;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 207, 39, 0.4);
}

.banner-links {
    font-size: 1rem;
    color: var(--text-light);
    animation: slideInLeft 1s ease-out 0.6s backwards;
    font-weight: 500;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-secondary) 100%);
}

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

.features-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.features-header h2 span {
    color: var(--primary-color);
}

.features-header p {
    font-size: 1.2rem;
    color: var(--text-dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--light-secondary);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700, var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(245, 207, 39, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--dark-bg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Product Slider */
.products-section {
    padding: 100px 30px;
    background: var(--dark-bg);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: 300px;
    background: linear-gradient(145deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(245, 207, 39, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--dark-tertiary);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.product-info .original-price {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-shop-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 207, 39, 0.3);
    width: 100%;
    text-align: center;
}

.product-shop-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 207, 39, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(245, 207, 39, 0.4);
}

.slider-btn.prev {
    left: -30px;
}

.slider-btn.next {
    right: -30px;
}

/* About Section */
.about-section {
    padding: 100px 30px;
    background: linear-gradient(180deg, var(--light-secondary) 0%, var(--light-bg) 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-dark-gray);
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 30px;
    background: #fff;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: var(--light-secondary);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(245, 207, 39, 0.2);
}

.why-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffd700 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 1rem;
    color: var(--text-dark-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 30px;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.contact-item .text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-item .text p {
    font-size: 1rem;
    color: var(--text-dark-gray);
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
footer {
    background: var(--dark-secondary);
    padding: 60px 30px 30px;
    border-top: 2px solid var(--primary-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-logo .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.footer-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--dark-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .animated-text h1 {
        font-size: 3.5rem;
    }
    
    .animated-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark-secondary);
        padding: 100px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 30px;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
.whatsapp {
    bottom: 20px;
    cursor: pointer;
    width: 52px;
    height: 52px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    transition: bottom 0.2s;
}
    .animated-text h1 {
        font-size: 2.5rem;
    }

    .animated-text h2 {
        font-size: 1.2rem;
    }

    .animated-text h3 {
        font-size: 3rem;
    }

    .animated-text h4 {
        font-size: 1.5rem;
    }

    .animated-text {
        padding-left: 5%;
        padding-right: 5%;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .banner-links {
        font-size: 0.9rem;
    }

    .features-header h2,
    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .features-header p,
    .section-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    nav {
        width: 85%;
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .animated-text h1 {
        font-size: 2rem;
    }

    .animated-text h2 {
        font-size: 1rem;
    }

    .animated-text h3 {
        font-size: 2.5rem;
    }

    .animated-text h4 {
        font-size: 1.2rem;
    }

    .animated-text {
        padding-left: 5%;
        padding-right: 5%;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .banner-links {
        font-size: 0.8rem;
    }

    .features-header h2,
    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .product-card {
        min-width: 280px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .why-card {
        padding: 30px;
    }

    .contact-item .icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .header-container {
        padding: 12px 15px;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
    }
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}
