.elementor-6299 .elementor-element.elementor-element-0d317de{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-6299 .elementor-element.elementor-element-81d37c4 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-81d37c4 */: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(46, 5, 5, 0.85), rgba(46, 5, 5, 0.85)), url('https://silkkhazana.in/wp-content/uploads/2026/07/silk-bunkar-varanasi-pit-loom.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 6rem;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    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 {
    font-size: 2.3rem;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--accent);
    padding-left: 20px;
    line-height: 1.3;
}

/* 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);
}

.image-caption {
    background-color: var(--primary);
    color: var(--bg-light);
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Table styling */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    text-align: left;
}

th, td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background-color: #faf8f5;
}

/* 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;
}

/* List Styling */
.styled-list {
    list-style: none;
    margin: 2rem 0;
}

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.styled-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Steps Process block */
.steps-container {
    margin: 3rem 0;
}

.step-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.step-number {
    background-color: var(--primary);
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* 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;
}

/* Callout Box */
.callout-box {
    background-color: var(--bg-white);
    border-left: 5px solid var(--accent);
    padding: 2.5rem;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.callout-box p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0;
}

/* Featured Snippet & Quick Answer Box */
.featured-box {
    background-color: #fffcf7;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    border-radius: 6px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.featured-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.featured-box p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* 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(--primary);
    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.2rem;
    }

    .content-grid,
    .content-grid.reverse {
        gap: 3rem;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "text";
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        height: 60vh;
        margin-bottom: 3.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}/* End custom CSS */