.elementor-6266 .elementor-element.elementor-element-77d81ed{padding:0px 0px 0px 0px;}/* Start custom CSS for section, class: .elementor-element-77d81ed */:root {
    --primary: #2e0505;
    /* Silk Khazana Deep Maroon */
    --primary-light: #5a0a0a;
    --accent: #c5a059;
    /* Elegant Golden Saffron */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f5f0;
    /* Premium Silk Cream */
    --bg-white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('https://silkkhazana.in/wp-content/uploads/2026/06/chiniya_silk_hero_1780919174020.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 6rem;
}

.hero-content h1 {
    color: white;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

/* Grid Layouts with Area Targeting */
.content-grid {
    display: grid;
    grid-template-areas: "text image";
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.content-grid.reverse {
    grid-template-areas: "image text";
    grid-template-columns: 0.8fr 1.2fr;
}

/* Specific area assignment to prevent structural shifts */
.text-block {
    grid-area: text;
    padding: 20px;
}

.image-block {
    grid-area: image;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    width: 100%;
}

.image-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-block:hover img {
    transform: scale(1.05);
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* FAQ Accordion */
.faq-section {
    background-color: #f9f4ec;
    padding: 6rem 0;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.faq-question:hover {
    background: #fffafa;
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 1rem 1.8rem 2.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 7rem 0;
}

.cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--accent);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Optimization */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .content-grid,
    .content-grid.reverse {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        height: 60vh;
        margin-bottom: 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    /* Force all images to top on mobile for consistency */
    .content-grid,
    .content-grid.reverse {
        grid-template-areas:
            "image"
            "text";
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .image-block img {
        height: 350px;
    }

    .feature-grid {
        gap: 1.5rem;
    }

    .cta {
        padding: 5rem 1.5rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .image-block img {
        height: 280px;
    }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}/* End custom CSS */