:root {
    --brown: #8B4513;
    --maroon: #800000;
    --red: #DC143C;
    --beige: #F5F5DC;
    --yellow: #FFD700;
    --dark-blue: #001d3f;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--beige);
    color: var(--dark-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Navigation */
.nav-container {
    background-color: #F5F5DC;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideIn 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--dark-blue);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--maroon);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
    color: var(--dark-blue);
    font-size: 1.3rem;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--maroon);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--maroon);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--yellow);
    transition: var(--transition);
}

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

.nav-menu a.active {
    color: var(--maroon);
    font-weight: 600;
}

@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav-actions {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-actions .social-links {
        display: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../assets/images/Puppet show in Rajasthan.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.3), rgba(128, 0, 0, 0.3));
    animation: fadeIn 1s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: scaleIn 1s ease;
    margin: 0;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.4;
}

/* Shop Hero Section */
.shop-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../assets/images/shop.JPG') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0;
    position: relative;
    margin-top: 60px;
}

.shop-hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeIn 1s ease;
}

.shop-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.shop-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.shop-hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--yellow);
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 2.5rem;
    }
    
    .shop-hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* DIY Hero Section */
.diy-hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../assets/images/making 1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.diy-hero-content {
    max-width: 800px;
    z-index: 1;
}

.diy-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.diy-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: white;
}

.diy-hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.diy-hero .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.diy-hero .feature i {
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.diy-hero .feature span {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
    .diy-hero {
        height: 60vh;
        background-attachment: scroll;
    }

    .diy-hero h1 {
        font-size: 2.5rem;
    }

    .diy-hero p {
        font-size: 1rem;
    }

    .diy-hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    color: var(--maroon);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--maroon);
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-info h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info button {
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    width: 100%;
}

.product-info button:hover {
    background-color: white;
    transform: translateY(-2px);
}

/* DIY Section */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tutorial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
}

.tutorial-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.tutorial-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tutorial-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.tutorial-content p {
    color: var(--dark-blue);
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.tutorial-card button {
    background: var(--yellow);
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.tutorial-card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--yellow), #ffd900);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tutorial-card button:hover::before {
    opacity: 1;
}

.tutorial-card button span {
    position: relative;
    z-index: 1;
}

.tutorial-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.tutorial-difficulty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.difficulty-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--maroon);
    opacity: 0.3;
}

.difficulty-dot.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .tutorial-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 1rem;
    }

    .tutorial-image {
        height: 200px;
    }

    .tutorial-content {
        padding: 1.5rem;
    }

    .tutorial-content h3 {
        font-size: 1.3rem;
    }

    .tutorial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tutorial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Contact Form Section */
#contact {
    padding: 6rem 2rem;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(128, 0, 0, 0.05));
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: white;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: var(--maroon);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-form button:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.contact-form button:hover::before {
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--beige);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: var(--transition);
}

.mobile-menu-button:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        display: none;
        padding-top: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
}

/* About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--maroon), var(--red));
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.about-card h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-card p {
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--beige);
    padding: 3rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--beige);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

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

.social-links a {
    color: var(--beige);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(245, 245, 220, 0.1);
}

/* Craft Introduction Section */
.craft-intro {
    background-color: white;
    padding: 6rem 2rem;
    text-align: left;
    position: relative;
    margin-top: 0;
}

.craft-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craft-intro-text {
    padding-right: 2rem;
}

.craft-intro-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.craft-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-intro h2 {
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.craft-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--maroon), var(--red));
}

.craft-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.craft-intro .highlight {
    color: var(--maroon);
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--maroon);
}

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

/* Featured Product Section */
.featured-product {
    background-color: white;
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-details {
    padding: 2rem;
}

.featured-details h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-price {
    font-size: 2rem;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.featured-features {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.featured-features i {
    color: var(--maroon);
    font-size: 1.2rem;
}

.featured-button {
    background-color: var(--dark-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
}

.featured-button:hover {
    background-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-image img {
        height: 400px;
    }

    .featured-details {
        padding: 1rem;
    }

    .featured-details h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../assets/images/best.JPG') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.about-main {
    padding: 6rem 2rem;
    background-color: white;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-blue);
    font-size: 1rem;
}

.about-features {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../assets/images/Puppet show in Rajasthan.jpg') center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: white;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--maroon);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-blue);
    line-height: 1.6;
}

.about-timeline {
    padding: 6rem 2rem;
    background-color: white;
}

.about-timeline h2 {
    text-align: center;
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--maroon);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: calc(50% - 30px);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--maroon);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.timeline-content h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
}

.timeline-date {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-content::before {
        left: -40px !important;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.4rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../assets/images/illust\ 2.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 3rem;
    }
    
    .contact-hero p {
        font-size: 1.4rem;
    }
}

/* Video Section */
.about-video {
    padding: 6rem 2rem;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(128, 0, 0, 0.05));
    z-index: 1;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-container h2 {
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.video-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--maroon), var(--red));
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-description {
    font-size: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-video {
        padding: 4rem 1rem;
    }

    .video-container h2 {
        font-size: 2rem;
    }

    .video-description {
        font-size: 1.1rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(128, 0, 0, 0.05));
    z-index: 1;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-container h2 {
    text-align: center;
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--maroon), var(--red));
}

.gallery-description {
    text-align: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 1rem;
    }

    .gallery-container h2 {
        font-size: 2rem;
    }

    .gallery-description {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Carousel Section */
.carousel-section {
    padding: 6rem 2rem;
    background-color: var(--beige);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), rgba(128, 0, 0, 0.05));
    z-index: 1;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.carousel-container h2 {
    text-align: center;
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--maroon), var(--red));
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--yellow);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 4rem 1rem;
    }

    .carousel {
        height: 400px;
    }

    .carousel-container h2 {
        font-size: 2rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* DIY Process Section */
.diy-process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--beige) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.diy-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.diy-process-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.diy-video-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.diy-video-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.diy-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: #000;
}

.diy-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.diy-video-wrapper:hover video {
    transform: scale(1.05);
}

.diy-process-content {
    padding: 2rem;
}

.diy-process-content h2 {
    color: var(--maroon);
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.diy-process-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--maroon), var(--red));
    border-radius: 2px;
}

.process-steps {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--maroon);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(128, 0, 0, 0.1));
    border-radius: 15px;
    padding: 0.5rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--dark-blue);
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .diy-process-container {
        gap: 4rem;
    }

    .diy-process-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .diy-process {
        padding: 6rem 2rem;
    }

    .diy-process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diy-video-container {
        max-width: 350px;
        transform: none;
    }

    .diy-video-container:hover {
        transform: none;
    }

    .diy-process-content {
        padding: 1rem;
    }

    .diy-process-content h2 {
        font-size: 2.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
        min-width: 40px;
        height: 40px;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .diy-process {
        padding: 4rem 1rem;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
} 