.elementor-6232 .elementor-element.elementor-element-caf82c6{padding:100px 0px 80px 0px;}.elementor-6232 .elementor-element.elementor-element-ea69cb2 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ea69cb2 */: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);
}

ul,
ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

ul li,
ol li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.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/03/bridal-1.jpg');
    background-size: cover;
    background-position: center top;
    color: white;
    margin-bottom: 6rem;
}

.hero-content h1 {
    color: white;
    font-size: 4.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.6rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    color: white;
}

/* 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;
}

.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(250px, 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.4rem;
}

/* Pull Quote */
.pull-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: #f9f4ec;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

/* Comparison / Info Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 1rem;
}

.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-family: 'Playfair Display', serif;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1.05rem;
}

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0e8d8;
    color: var(--text-light);
    vertical-align: top;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: #fdf9f4;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary);
}

/* Step Cards (10 Ways) */
.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    counter-increment: step-counter;
}

.step-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 60px;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

/* Checklist items */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Warning / Tip Badges */
.badge-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff8ee;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

.badge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

/* Price Table */
.price-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 1rem;
}

.price-table th {
    background: var(--accent);
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
}

.price-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0e8d8;
    color: var(--text-light);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:nth-child(even) td {
    background: #fdf9f4;
}

/* Silk Khazana Commitment Cards */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.commitment-card:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: var(--accent);
}

.commitment-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.commitment-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Mistakes Section */
.mistake-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-light);
    transition: var(--transition);
}

.mistake-item:hover {
    border-left-color: var(--accent);
    transform: translateX(6px);
}

.mistake-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.mistake-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.label-mistake {
    background: #fde8e8;
    color: #c0392b;
}

.label-solution {
    background: #e8f8ee;
    color: #27ae60;
}

/* Expert Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-8px);
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* 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;
    color: var(--text-dark);
}

.faq-question:hover {
    background: #fffafa;
    color: var(--primary);
}

.faq-question .faq-icon {
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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: 600px;
}

/* Share Section */
.share-section {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #f0e8d8;
    border-bottom: 1px solid #f0e8d8;
}

.share-label {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: var(--transition);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #0d65d9;
}

.share-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.share-instagram:hover {
    filter: brightness(1.1);
}

.share-linkedin {
    background: #0A66C2;
}

.share-linkedin:hover {
    background: #085196;
}

.share-pinterest {
    background: #E60023;
}

.share-pinterest:hover {
    background: #c0001d;
}

.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #1eba57;
}

.share-copy {
    background: var(--primary);
}

.share-copy:hover {
    background: var(--primary-light);
}

/* 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;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 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);
}

.btn-outline {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

/* Silk Khazana Section */
.sk-section {
    background: var(--primary);
    padding: 6rem 0;
}

.sk-section .section-title {
    color: white;
}

.sk-section .section-title::after {
    background-color: var(--accent);
}

/* Conclusion Checklist */
.conclusion-checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.conclusion-checklist li {
    padding: 0.7rem 0 0.7rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid #f0e8d8;
}

.conclusion-checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Responsive */
@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.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-areas:
            "image"
            "text";
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .image-block img {
        height: 350px;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-grid,
    .tips-grid,
    .commitment-grid {
        gap: 1.5rem;
    }

    .cta {
        padding: 5rem 1.5rem;
    }

    .cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .image-block img {
        height: 280px;
    }

    .btn,
    .btn-outline {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .step-number {
        font-size: 2rem;
    }
}/* End custom CSS */