/* Base Styles & Variables */
:root {
    --bg-color: #050505;
    --section-bg: #0a0a0a;
    --card-bg: #111111;
    --primary-red: #d32f2f;
    --primary-red-hover: #b71c1c;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #222222;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.1;
}

.red-text { color: var(--primary-red); }
.red-icon { color: var(--primary-red); }

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-subtitle .line {
    height: 1px;
    width: 30px;
    background-color: var(--primary-red);
    display: inline-block;
}

.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.brand-trishul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.trishul-svg {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(230,57,70,0.8));
    animation: divine-trishul 3s infinite alternate ease-in-out;
}
@keyframes divine-trishul {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 5px rgba(230,57,70,0.5)); }
    100% { transform: translateY(-3px) scale(1.05); filter: drop-shadow(0 0 20px rgba(230,57,70,1)); }
}

.brand-text-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: white;
    line-height: 1;
}
.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% top;
}

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

.hero-content {
    width: 100%;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: -10px;
}

.hero-inspired {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 2rem;
}

.stat h4 {
    font-size: 1.5rem;
    margin-bottom: -5px;
}

.stat p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.hero-right-text {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
}

/* Features Banner */
.features-banner {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(10,10,10,0.8);
    padding: 20px 0;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* About Section */
.about {
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--border-color);
}

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

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    display: block;
}

.jaap-overlay {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
    opacity: 0.8;
}

.jaap-text {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-red);
    letter-spacing: 5px;
    animation: marquee 15s linear infinite;
    text-shadow: 0 0 15px rgba(230, 57, 70, 0.6);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.about-content {
    padding: 20px 0;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.mv-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 6px;
}

.mv-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.mv-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-quote-box {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.about-quote-box .large-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-quote-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.quote-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Daily Motivation */
.motivation-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.mot-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.card-header {
    margin-bottom: 15px;
}

.x-large-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.card-header h4 {
    font-size: 1.3rem;
}

.mot-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.with-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Latest Reels */
.reels {
    background-color: var(--section-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reels-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.follow-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.follow-link:hover {
    color: var(--primary-red);
}

.reels-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reels-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.reels-track::-webkit-scrollbar {
    display: none; /* Chrome */
}

.reel-card {
    min-width: calc((100% - 45px) / 4);
    flex: 0 0 auto;
    height: 350px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

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

.reel-card:hover img {
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.play-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.reel-overlay h4 {
    font-size: 1.3rem;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav-btn:hover {
    color: var(--primary-red);
}

/* Join Army */
.join-army {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.join-army-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.join-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.join-text p {
    color: var(--text-muted);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-card:hover {
    border-color: var(--primary-red);
}

.social-card i {
    font-size: 2rem;
}

.social-card h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.social-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.join-image {
    position: absolute;
    right: 300px;
    bottom: 0;
    height: 110%;
    z-index: -1;
}

.join-image img {
    height: 100%;
    object-fit: cover;
}

.join-right-text {
    text-align: right;
    grid-column: 4;
}

.join-right-text h3 {
    font-size: 1.5rem;
}

.mt-4 { margin-top: 20px; }

/* Coming Soon */
.coming-soon {
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--border-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.product-icon {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 25px 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-icon:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.product-icon i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.product-icon p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.product-icon.highlight {
    border-color: var(--primary-red);
}

/* Free Resources */
.resources {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.resources-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.resources-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.resources-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.resources-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.resources-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.resource-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.resources-form {
    background-color: rgba(10,10,10,0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resources-form:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

#contact:target .resources-form {
    animation: contact-pulse 2s ease-out;
}

@keyframes contact-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.8); border-color: var(--primary-red); transform: scale(1.02); }
    50% { box-shadow: 0 0 30px 15px rgba(230, 57, 70, 0); border-color: var(--primary-red); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); border-color: var(--border-color); transform: scale(1); }
}

.resources-form input,
.resources-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 4px;
    font-family: var(--font-body);
}

.resources-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

.w-100 { width: 100%; justify-content: center; }

.resources-right {
    text-align: right;
    align-self: center;
}

.resources-right h3 {
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: var(--section-bg);
    padding-top: 60px;
    position: relative;
}

.newsletter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.footer-animations {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    margin-right: 20px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}
.anim-bro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.anim-label {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-red);
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}
.anim-bro {
    position: relative;
    width: 80px;
    height: 100px;
}
.anim-bro div {
    position: absolute;
    background-color: white;
}

/* 1. Yoga Bro */
.yoga-bro { transform: scale(0.8); transform-origin: bottom center; }
.yoga-bro .y-body {
    background: transparent;
    width: 100%; height: 100%;
    animation: yoga-float 4s infinite ease-in-out;
    z-index: 2;
}
.yoga-bro .aura {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.5) 0%, rgba(230,57,70,0) 70%);
    top: 10px; left: 10px;
    animation: aura-pulse 4s infinite ease-in-out;
}
.yoga-bro .y-head { width: 18px; height: 18px; border-radius: 50%; top: 20px; left: 31px; }
.yoga-bro .y-torso { width: 8px; height: 30px; top: 38px; left: 36px; border-radius: 4px; }
.yoga-bro .y-arm { width: 5px; height: 25px; border-radius: 2px; top: 40px; transform-origin: top center; }
.yoga-bro .y-left { left: 25px; transform: rotate(30deg); }
.yoga-bro .y-right { left: 50px; transform: rotate(-30deg); }
.yoga-bro .y-legs { width: 35px; height: 10px; top: 65px; left: 22px; border-radius: 5px; }

@keyframes yoga-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes aura-pulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.5; }
    50% { transform: scale(1.5) translateY(-15px); opacity: 1; }
}

/* 2. Pushup Bro */
.pushup-bro { width: 100px; transform: scale(0.8); transform-origin: bottom center; }
.pushup-bro .p-body {
    background: transparent;
    width: 100%; height: 100%;
    transform-origin: 80px 80px;
    animation: pushup-body 2s infinite ease-in-out;
    z-index: 2;
}
.pushup-bro .p-head { width: 18px; height: 18px; border-radius: 50%; top: 60px; left: 10px; }
.pushup-bro .p-torso { width: 45px; height: 8px; top: 65px; left: 25px; border-radius: 4px; transform: rotate(10deg); }
.pushup-bro .p-legs { width: 35px; height: 6px; top: 73px; left: 65px; border-radius: 3px; transform: rotate(10deg); }
.pushup-bro .p-arm {
    width: 6px; height: 30px;
    top: 65px; left: 35px;
    border-radius: 3px;
    transform-origin: bottom center;
    animation: pushup-arm 2s infinite ease-in-out;
}
.pushup-bro .p-back { left: 42px; z-index: -1; opacity: 0.5; }

@keyframes pushup-body {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg); }
}
@keyframes pushup-arm {
    0%, 100% { height: 30px; transform: translateY(0); }
    50% { height: 15px; transform: translateY(15px); }
}

/* 3. Biceps Bro */
.biceps-bro { transform: scale(0.8); transform-origin: bottom center; }
.biceps-bro .b-head { width: 18px; height: 18px; border-radius: 50%; top: 20px; left: 31px; }
.biceps-bro .b-torso { width: 8px; height: 35px; top: 38px; left: 36px; border-radius: 4px; }
.biceps-bro .b-leg { width: 6px; height: 30px; top: 70px; border-radius: 3px; }
.biceps-bro .b-left { left: 32px; }
.biceps-bro .b-right { left: 42px; }
.biceps-bro .b-upper { width: 6px; height: 18px; top: 40px; border-radius: 3px; transform-origin: top center; }
.biceps-bro .b-left-upper { left: 30px; transform: rotate(15deg); }
.biceps-bro .b-right-upper { left: 44px; transform: rotate(-15deg); }
.biceps-bro .b-forearm { width: 6px; height: 18px; top: 15px; left: 0; border-radius: 3px; transform-origin: top center; }
.biceps-bro .b-left-upper .b-forearm { animation: bicep-curl-left 2s infinite ease-in-out; }
.biceps-bro .b-right-upper .b-forearm { animation: bicep-curl-right 2s infinite ease-in-out; }
.biceps-bro .dumbbell { width: 14px; height: 6px; background: var(--primary-red); border-radius: 2px; bottom: -2px; left: -4px; }

@keyframes bicep-curl-left { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(-130deg); } }
@keyframes bicep-curl-right { 0%, 100% { transform: rotate(10deg); } 50% { transform: rotate(130deg); } }

/* 4. Squat Bro */
.squat-bro { width: 100px; transform: scale(0.8); transform-origin: bottom center; }
.squat-bro .upper-body {
    background: transparent;
    width: 100%; height: 100%;
    top: 0; left: 0;
    animation: squat-body 2s infinite ease-in-out;
    z-index: 2;
}
.squat-bro .barbell { background: transparent; width: 100px; height: 20px; top: 5px; left: 0; }
.squat-bro .bar { width: 100%; height: 4px; top: 8px; background: white; border-radius: 2px;}
.squat-bro .plate { width: 8px; height: 26px; background: var(--primary-red); top: -3px; border-radius: 2px; }
.squat-bro .plate.left { left: 10px; }
.squat-bro .plate.right { right: 10px; }

.squat-bro .head { width: 18px; height: 18px; border-radius: 50%; top: 20px; left: 41px; }
.squat-bro .torso { width: 8px; height: 35px; top: 38px; left: 46px; border-radius: 5px; }
.squat-bro .arm { width: 5px; height: 25px; border-radius: 2px; top: 28px; }
.squat-bro .arm-left { left: 30px; transform: rotate(45deg); }
.squat-bro .arm-right { left: 65px; transform: rotate(-45deg); }

.squat-bro .leg { background: transparent; width: 10px; height: 45px; top: 70px; z-index: 1;}
.squat-bro .leg-left { left: 42px; }
.squat-bro .leg-right { left: 52px; }
.squat-bro .thigh { width: 8px; height: 22px; border-radius: 4px; transform-origin: 50% 10%; }
.squat-bro .calf { width: 6px; height: 22px; top: 20px; left: 1px; border-radius: 3px; transform-origin: 50% 10%; }

.squat-bro .left-thigh { animation: squat-thigh-left 2s infinite ease-in-out; }
.squat-bro .left-calf { animation: squat-calf-left 2s infinite ease-in-out; }
.squat-bro .right-thigh { animation: squat-thigh-right 2s infinite ease-in-out; }
.squat-bro .right-calf { animation: squat-calf-right 2s infinite ease-in-out; }

@keyframes squat-body {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(22px); }
}
@keyframes squat-thigh-left {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(75deg); }
}
@keyframes squat-calf-left {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-130deg); }
}
@keyframes squat-thigh-right {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-75deg); }
}
@keyframes squat-calf-right {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(130deg); }
}

/* 5. Bench Press Bro */
.benchpress-bro { transform: scale(0.8); transform-origin: bottom center; width: 100px; }
.benchpress-bro .bp-bench { width: 80px; height: 10px; background: #555; top: 65px; left: 10px; border-radius: 4px; }
.benchpress-bro .bp-body { top: 57px; left: 10px; background-color: transparent !important; }
.benchpress-bro .bp-head { width: 18px; height: 18px; border-radius: 50%; top: -5px; left: -5px; }
.benchpress-bro .bp-torso { width: 45px; height: 8px; border-radius: 4px; top: 0px; left: 15px; }
.benchpress-bro .bp-leg-top { width: 8px; height: 25px; border-radius: 4px; top: 0; left: 55px; transform: rotate(30deg); transform-origin: top left;}
.benchpress-bro .bp-leg-bottom { width: 8px; height: 25px; border-radius: 4px; top: 20px; left: 60px; }

.benchpress-bro .bp-barbell-side {
    width: 25px; height: 25px; border-radius: 50%; background: var(--primary-red);
    top: 10px; left: 25px;
    animation: bp-lift 2s infinite ease-in-out;
    display: flex; justify-content: center; align-items: center;
}
.benchpress-bro .bp-barbell-side::after { content: ''; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: white; }

.benchpress-bro .bp-arm {
    width: 6px; height: 35px; border-radius: 3px;
    top: 30px; left: 34px;
    transform-origin: bottom center;
    animation: bp-arm-flex 2s infinite ease-in-out;
}
@keyframes bp-lift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(22px); } }
@keyframes bp-arm-flex { 0%, 100% { height: 35px; transform: translateY(0); } 50% { height: 13px; transform: translateY(22px); } }

/* 6. Treadmill Bro */
.treadmill-bro { transform: scale(0.8); transform-origin: bottom center; width: 100px; }
.treadmill-bro .tm-machine { width: 100px; height: 100%; top: 0; left: 0; background-color: transparent !important; }
.treadmill-bro .tm-base { width: 80px; height: 8px; background: #555; bottom: 0; top: auto; left: 10px; border-radius: 4px; transform: rotate(-5deg); }
.treadmill-bro .tm-handle { width: 6px; height: 40px; background: #555; bottom: 5px; top: auto; left: 80px; border-radius: 3px; transform: rotate(20deg); }
.treadmill-bro .tm-panel { width: 15px; height: 10px; background: var(--primary-red); bottom: 42px; top: auto; left: 85px; border-radius: 2px; }

.treadmill-bro .tm-body { top: 15px; left: 35px; animation: run-bounce 0.5s infinite alternate ease-in-out; background-color: transparent !important; }
.treadmill-bro .tm-head { width: 18px; height: 18px; border-radius: 50%; top: 0; left: 5px; }
.treadmill-bro .tm-torso { width: 10px; height: 30px; border-radius: 5px; top: 20px; left: 5px; transform: rotate(10deg); }
.treadmill-bro .tm-arm { width: 6px; height: 25px; border-radius: 3px; top: 25px; left: 10px; transform-origin: top center; }
.treadmill-bro .tm-arm-left { animation: run-swing-left 1s infinite linear; }
.treadmill-bro .tm-arm-right { animation: run-swing-right 1s infinite linear; z-index: -1; opacity: 0.5; }
.treadmill-bro .tm-leg { width: 8px; height: 30px; border-radius: 4px; top: 48px; left: 8px; transform-origin: top center; }
.treadmill-bro .tm-leg-left { animation: run-swing-right 1s infinite linear; }
.treadmill-bro .tm-leg-right { animation: run-swing-left 1s infinite linear; z-index: -1; opacity: 0.5; }

@keyframes run-bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-5px); } }
@keyframes run-swing-left { 0%, 100% { transform: rotate(30deg); } 50% { transform: rotate(-30deg); } }
@keyframes run-swing-right { 0%, 100% { transform: rotate(-30deg); } 50% { transform: rotate(30deg); } }

/* 7. Leg Press Bro */
.legpress-bro { transform: scale(0.8); transform-origin: bottom center; width: 100px; }
.legpress-bro .lp-machine-base { width: 70px; height: 10px; background: #555; bottom: 0; top: auto; left: 10px; border-radius: 4px; }
.legpress-bro .lp-machine-back { width: 10px; height: 60px; background: #555; top: 35px; left: 20px; border-radius: 4px; transform: rotate(45deg); }

.legpress-bro .lp-body { top: 25px; left: 25px; transform: rotate(45deg); background-color: transparent !important; }
.legpress-bro .lp-head { width: 18px; height: 18px; border-radius: 50%; top: -10px; left: -4px; }
.legpress-bro .lp-torso { width: 10px; height: 40px; border-radius: 5px; top: 10px; left: 0px; }

.legpress-bro .lp-platform-group {
    background-color: transparent !important;
    top: 5px; left: 55px;
    animation: lp-push 2s infinite ease-in-out;
}
.legpress-bro .lp-platform { width: 10px; height: 40px; background: white; transform: rotate(45deg); border-radius: 3px; }
.legpress-bro .lp-weight { width: 25px; height: 25px; background: var(--primary-red); border-radius: 4px; top: 5px; left: 10px; transform: rotate(45deg); }

.legpress-bro .lp-leg {
    width: 35px; height: 8px; border-radius: 4px;
    top: 65px; left: 45px;
    transform-origin: left center;
    transform: rotate(-45deg);
    animation: lp-leg-stretch 2s infinite ease-in-out;
}

@keyframes lp-push {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 15px); }
}
@keyframes lp-leg-stretch {
    0%, 100% { width: 35px; transform: rotate(-45deg); }
    50% { width: 15px; transform: rotate(-45deg); }
}

.footer-hanuman {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 150px;
}

.footer-hanuman img {
    height: 100%;
    opacity: 0.5;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}


.brand-sub {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 15px 0;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bajrang-blessing {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-red);
    border-radius: 4px 8px 8px 4px;
    position: relative;
    overflow: hidden;
    animation: blessing-breathe 4s infinite alternate ease-in-out;
    transition: all 0.3s ease;
}
.bajrang-blessing:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}
@keyframes blessing-breathe {
    0% { box-shadow: -2px 0 10px rgba(230, 57, 70, 0); }
    100% { box-shadow: -2px 0 20px rgba(230, 57, 70, 0.3); }
}
.blessing-chant {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.blessing-chant .om {
    color: var(--primary-red);
    font-size: 2rem;
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(230,57,70,0.5);
    animation: om-pulse 3s infinite alternate ease-in-out;
}
.blessing-mantra {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
    line-height: 1.5;
    background: linear-gradient(90deg, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 3s infinite alternate;
}
@keyframes text-shimmer {
    0% { opacity: 0.8; }
    100% { opacity: 1; text-shadow: 0 0 8px rgba(255,255,255,0.2); }
}
@keyframes om-pulse {
    0% { transform: scale(0.95); text-shadow: 0 0 5px rgba(230,57,70,0.3); }
    100% { transform: scale(1.1); text-shadow: 0 0 20px rgba(230,57,70,0.8), 0 0 10px rgba(230,57,70,0.5); }
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.motivational-col {
    display: flex;
    flex-direction: column;
}
.creed-box {
    background: rgba(230, 57, 70, 0.05);
    border-left: 2px solid var(--primary-red);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}
.creed-line {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}
.creed-1 {
    color: var(--text-muted);
    animation: creed-glow-1 3s infinite alternate;
}
.creed-2 {
    color: var(--primary-red);
    margin-top: 5px;
    animation: creed-glow-2 3s infinite alternate-reverse;
}

@keyframes creed-glow-1 {
    0% { text-shadow: 0 0 0px rgba(255,255,255,0); color: #888; transform: translateX(0); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.5); color: #fff; transform: translateX(5px); }
}
@keyframes creed-glow-2 {
    0% { text-shadow: 0 0 0px rgba(230,57,70,0); transform: translateX(0); }
    100% { text-shadow: 0 0 15px rgba(230,57,70,0.8); transform: translateX(5px); }
}

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

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-padding { padding: 60px 0; }
    .hero-title { font-size: 4.5rem; }
    .hero-right-text { font-size: 2rem; right: 10px; opacity: 0.3; }
    .about-container { grid-template-columns: 1fr 1fr; }
    .about-quote-box { grid-column: 1 / -1; }
    .motivation-grid { grid-template-columns: repeat(3, 1fr); }
    .join-army-container { grid-template-columns: 1fr 1fr; }
    .join-image { display: none; }
    .join-right-text { grid-column: auto; text-align: left; }
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .resources-container { grid-template-columns: 1fr; }
    .resources-right { text-align: left; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
    .reel-card { min-width: calc((100% - 30px) / 3); }
}

@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
    .section-title { font-size: 2.2rem; }
    .navbar .nav-links, .navbar .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { align-items: flex-start; padding-top: 120px; }
    .hero-title { font-size: 3.5rem; }
    .hero-right-text { display: none; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: space-between; }
    .stat { width: 45%; }
    
    .features-grid { justify-content: center; }
    
    .about-container { grid-template-columns: 1fr; }
    .about-quote-box h3 { font-size: 1.5rem; }
    .about-quote-box .large-icon { font-size: 2rem; margin-bottom: 10px; }
    .mission-vision { grid-template-columns: 1fr; }
    
    .motivation-grid { grid-template-columns: repeat(2, 1fr); }
    .reels-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    
    .join-army-container { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    
    .newsletter-bar { flex-direction: column; gap: 20px; align-items: flex-start; }
    .news-form { width: 100%; flex-direction: column; gap: 10px; }
    .news-form input { min-width: 0; border-radius: 4px; }
    .news-form .btn { border-radius: 4px; }
    .footer-hanuman { opacity: 0.1; }
    
    .reel-card { min-width: calc((100% - 15px) / 2); height: 450px; }
    .reel-card img { object-position: center top; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-inspired { font-size: 1.5rem; }
    .stat { width: 100%; }
    .motivation-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 30px; }
    .reel-card { min-width: 100%; height: 500px; }
}
