.elementor-25774 .elementor-element.elementor-element-282d36a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3550b95 *//* ========== NIRMAKO Color Variables ========== */
:root {
    --nirmako-blue: #1a3a5c;
    --nirmako-blue-light: #2c5282;
    --nirmako-blue-dark: #0f2942;
    --nirmako-gold: #c9a227;
    --nirmako-gold-light: #d4b44a;
    --nirmako-gold-dark: #a68520;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    /* DISC Colors */
    --disc-d: #c0392b;
    --disc-i: #f39c12;
    --disc-s: #27ae60;
    --disc-c: #2980b9;
}

/* ========== Reset & Base ========== */
.disc-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.disc-wrapper {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    direction: rtl;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ========== Hero Section ========== */
.disc-hero {
    background: linear-gradient(135deg, var(--nirmako-blue) 0%, var(--nirmako-blue-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.disc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--disc-d), var(--disc-i), var(--disc-s), var(--disc-c));
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--nirmako-gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95em;
    margin-bottom: 20px;
    border: 1px solid var(--nirmako-gold);
}

.hero-title {
    font-size: 2.4em;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.2em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--nirmako-gold), var(--nirmako-gold-dark));
    color: var(--nirmako-blue-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
}

/* ========== Section Styles ========== */
.section-title {
    color: var(--nirmako-blue);
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--nirmako-gold);
}

.content-text {
    font-size: 1.05em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ========== Intro Section ========== */
.intro-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box {
    background: linear-gradient(135deg, var(--nirmako-blue) 0%, var(--nirmako-blue-light) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.intro-box h3 {
    color: var(--nirmako-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-box h3 svg {
    width: 24px;
    height: 24px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef8e8, #fef3d6);
    border-right: 4px solid var(--nirmako-gold);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box strong {
    color: var(--nirmako-blue);
}

/* ========== DISC Cards Section ========== */
.disc-section {
    padding: 60px 20px;
    background: var(--white);
}

.disc-container {
    max-width: 1100px;
    margin: 0 auto;
}

.disc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.disc-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.disc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.disc-card.d-card { border-top-color: var(--disc-d); }
.disc-card.i-card { border-top-color: var(--disc-i); }
.disc-card.s-card { border-top-color: var(--disc-s); }
.disc-card.c-card { border-top-color: var(--disc-c); }

.disc-letter {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.disc-card.d-card .disc-letter { color: var(--disc-d); }
.disc-card.i-card .disc-letter { color: var(--disc-i); }
.disc-card.s-card .disc-letter { color: var(--disc-s); }
.disc-card.c-card .disc-letter { color: var(--disc-c); }

.disc-card h3 {
    text-align: center;
    color: var(--nirmako-blue);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.disc-card p {
    color: var(--text-light);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.disc-card strong {
    color: var(--text-dark);
}

/* ========== Driving Forces Section ========== */
.forces-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--nirmako-blue-dark) 0%, var(--nirmako-blue) 100%);
}

.forces-container {
    max-width: 1100px;
    margin: 0 auto;
}

.forces-title {
    color: var(--nirmako-gold);
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 15px;
}

.forces-subtitle {
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.forces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.force-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.force-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.force-card h4 {
    color: var(--nirmako-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.force-card h4 svg {
    width: 22px;
    height: 22px;
}

.force-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95em;
    margin-bottom: 8px;
}

/* ========== Benefits Section ========== */
.benefits-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.benefits-container {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    border-right: 4px solid var(--nirmako-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--nirmako-gold), var(--nirmako-gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--nirmako-blue);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95em;
}

/* ========== Quote Section ========== */
.quote-section {
    padding: 50px 20px;
    background: var(--white);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-box {
    background: var(--bg-light);
    border-right: 5px solid var(--nirmako-gold);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.quote-text {
    font-size: 1.2em;
    color: var(--nirmako-blue);
    font-style: italic;
    line-height: 1.8;
}

.quote-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--nirmako-gold);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9em;
}

/* ========== Tips Section ========== */
.tips-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.tips-container {
    max-width: 900px;
    margin: 0 auto;
}

.tips-box {
    background: var(--white);
    border: 2px solid var(--nirmako-gold);
    border-radius: 12px;
    padding: 30px;
}

.tips-box h3 {
    color: var(--nirmako-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-box h3 svg {
    width: 24px;
    height: 24px;
    color: var(--nirmako-gold);
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li svg {
    width: 20px;
    height: 20px;
    color: var(--nirmako-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========== Recommended Reading Section ========== */
.reading-section {
    padding: 60px 20px;
    background: var(--white);
}

.reading-container {
    max-width: 900px;
    margin: 0 auto;
}

.reading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.reading-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    display: block;
}

.reading-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--nirmako-gold);
}

.reading-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--nirmako-blue), var(--nirmako-blue-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.reading-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.reading-card h4 {
    color: var(--nirmako-blue);
    font-size: 1.05em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.reading-card p {
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.6;
}

.reading-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nirmako-gold);
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 12px;
}

.reading-card .read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.reading-card:hover .read-more svg {
    transform: translateX(-4px);
}

/* ========== Form Section (T3) ========== */
.form-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-title {
    color: var(--nirmako-blue);
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--bg-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--nirmako-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder {
    color: #a0aec0;
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--nirmako-gold), var(--nirmako-gold-dark));
    color: var(--nirmako-blue-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}

.form-privacy {
    text-align: center;
    font-size: 0.8em;
    color: var(--text-light);
    margin-top: 15px;
}

/* ========== Social Networks Footer ========== */
.social-footer {
    background: var(--nirmako-blue-dark);
    padding: 40px 20px;
    text-align: center;
}

.social-container {
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    color: var(--nirmako-gold);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--nirmako-gold);
    border-color: var(--nirmako-gold);
    transform: translateY(-3px);
}

.social-link.facebook {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.footer-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

.footer-info strong {
    color: var(--nirmako-gold);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .disc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .forces-grid {
        grid-template-columns: 1fr;
    }
    
    .reading-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .disc-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-stats {
        gap: 20px;
    }
}/* End custom CSS */