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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 6px;
}

.sound-bar {
    width: 3px;
    background: white;
    border-radius: 2px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.sound-bar:nth-child(2) { height: 20px; animation-delay: 0.2s; }
.sound-bar:nth-child(3) { height: 14px; animation-delay: 0.4s; }
.sound-bar:nth-child(4) { height: 18px; animation-delay: 0.6s; }
.sound-bar:nth-child(5) { height: 10px; animation-delay: 0.8s; }

@keyframes soundWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.black {
    color: #1f2937;
}

.logo-text p {
    font-size: 0.5rem;
    color: #f97316;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f97316;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #f97316;
}

/* Breadcrumb */
.breadcrumb-container {
    background: #f9fafb;
    padding: 1rem 2rem;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #f97316;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Our Story */
.our-story {
    padding: 5rem 2rem;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
    font-size: 1.125rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.mv-card p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.8;
}

.mission-card {
    border-top: 4px solid #f97316;
}

.vision-card {
    border-top: 4px solid #3b82f6;
}

/* Our Values */
.our-values {
    padding: 5rem 2rem;
    background: white;
}

.our-values h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* What Makes Different */
.what-makes-different {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
}

.what-makes-different h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.different-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #f97316;
}

.diff-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 1rem;
}

.different-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.different-item p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Our Products Section */
.our-products-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.our-products-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-showcase-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.product-showcase-item:hover {
    transform: translateY(-8px);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.hanuman-color {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.ganesh-color {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.krishna-color {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.durga-color {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.lakshmi-color {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.guruji-color {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.khatu-color {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.product-showcase-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-showcase-item p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 2rem;
    background: white;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #f97316;
}

.stars {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Our Promise */
.our-promise {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.our-promise h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promise-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.promise-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

.promise-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.promise-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Trust Signals */
.trust-signals {
    padding: 4rem 2rem;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f97316;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #f97316;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1f2937;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fb923c;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fb923c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: #fb923c;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    color: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .story-content h2,
    .our-values h2,
    .what-makes-different h2,
    .our-products-section h2,
    .testimonials-section h2,
    .our-promise h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .main-nav {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}