.elementor-4578 .elementor-element.elementor-element-85cf992{--display:flex;}.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-post-outer-container{width:33.33%;margin-bottom:5px;padding-inline:calc( 5px/2 );}.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-content-wrapper{text-align:start;}.elementor-4578 .elementor-element.elementor-element-de83e4f .post-categories , .elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-post-tags-container {justify-content:start;}.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-thumbnail-container img{object-fit:cover;}.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-wrap{margin-inline:calc( -5px/2 );}.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-post-container{background-color:#f5f5f5;}@media(max-width:1024px){.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-post-outer-container{width:50%;}}@media(max-width:767px){.elementor-4578 .elementor-element.elementor-element-de83e4f .premium-blog-post-outer-container{width:100%;}}/* Start custom CSS for html, class: .elementor-element-b0fc280 *//* تصميم متقدم: أزرق/أحمر، 3D animations، scrolling effects، problem-solution cards */
:root {
    --problem: #e74c3c; /* أحمر (المشكلة) */
    --solution: #27ae60; /* أخضر (الحل) */
    --warning: #f39c12; /* برتقالي (تحذير) */
    --info: #3498db; /* أزرق (معلومة) */
    --dark: #2c3e50;
    --light: #ecf0f1;    --bg: linear-gradient(135deg, #ecf0f1 0%, #e8eef2 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--dark);
    background: var(--bg);
}

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
    animation: slideInDown 0.6s ease;
}
@keyframes slideInDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.breadcrumb a { color: var(--problem); text-decoration: none; font-weight: 600; transition: all 0.3s; }
.breadcrumb a:hover { color: var(--solution); transform: scale(1.05); }

/* Content Card */
.content-card {
    background: white;
    margin: 30px 0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--problem), var(--warning), var(--solution));
}

/* Header */
h1 {
    color: var(--dark);
    font-size: 3em;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--problem), var(--solution));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: zoomIn 0.8s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

h2 {
    color: var(--dark);
    font-size: 2.2em;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid var(--problem);
    padding-bottom: 10px;
}
h2::before { content: '💧'; font-size: 1.3em; animation: drip 2s infinite; }
@keyframes drip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

h3 { 
    color: var(--problem); 
    font-size: 1.6em; 
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

h4 {
    color: var(--info);
    font-size: 1.2em;
    margin: 15px 0 10px;
}

/* Intro */
.intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
    line-height: 1.8;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(39, 174, 96, 0.05));
    padding: 20px;
    border-radius: 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
}
img:hover { transform: scale(1.05) rotate(2deg); }

/* Problem-Solution Cards */
.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.ps-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);    transition: all 0.3s ease;
    animation: slideUp 0.6s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.ps-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.25);
}

.ps-problem {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 20px;
    border-left: 5px solid var(--problem);
    display: flex;
    align-items: center;
    gap: 15px;
}
.ps-problem i {
    font-size: 2em;
    color: var(--problem);
}
.ps-problem-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--problem);
}
.ps-problem-text {
    font-size: 0.9em;
    color: #c62828;
}

.ps-solution {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 20px;
    border-left: 5px solid var(--solution);
    display: flex;
    align-items: center;
    gap: 15px;
}
.ps-solution i {
    font-size: 2em;
    color: var(--solution);
}
.ps-solution-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--solution);
}
.ps-solution-text {
    font-size: 0.9em;
    color: #1b5e20;
}

/* Numbered List */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.numbered-list li {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f5f5f5, #eeeeee);
    border-radius: 10px;
    border-left: 5px solid var(--problem);
    transition: all 0.3s ease;
}
.numbered-list li:hover {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    transform: translateX(10px);
    border-left-color: var(--solution);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}
.list-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--problem), var(--warning));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3em;
    flex-shrink: 0;
}
.list-content h4 {
    color: var(--problem);
    margin: 0 0 8px 0;
}
.list-content p {
    color: #555;
    margin: 0;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    border-bottom: 2px solid var(--light);
    overflow-x: auto;
}.tab-button {
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--light);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}
.tab-button:hover {
    background: var(--light);
    transform: translateY(-3px);
}
.tab-button.active {
    background: linear-gradient(135deg, var(--problem), var(--warning));
    color: white;
    border-color: var(--problem);
}
.tab-content {
    display: none;
    padding: 20px;
    background: white;
    border-radius: 0 0 10px 10px;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.tab-content.active {
    display: block;
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.1);
}
.comparison-table th {    background: linear-gradient(135deg, var(--problem), var(--warning));
    color: white;
    padding: 18px;
    font-weight: 600;
    text-align: center;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light);
    text-align: center;
    transition: all 0.3s ease;
}
.comparison-table tr:hover td {
    background: #f9f9f9;
    transform: scale(1.02);
}.comparison-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: var(--problem);
}

/* Info Boxes */
.info-box, .warning-box, .success-box, .tip-box {
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid;
    transition: all 0.3s ease;
}
.info-box {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: var(--info);
}
.warning-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left-color: var(--warning);
}
.success-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left-color: var(--solution);
}
.tip-box {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-left-color: #9c27b0;
}
.info-box:hover, .warning-box:hover, .success-box:hover, .tip-box:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Lists */
ul, ol { padding-right: 25px; margin: 15px 0; }
ul li, ol li {
    margin: 10px 0;
    position: relative;
    padding-right: 15px;
    transition: all 0.3s ease;
}
ul li:hover, ol li:hover { 
    transform: translateX(10px); 
    color: var(--problem);
}
ul li::before { 
    content: '
    /* تم التصحيح هنا */
    position: absolute; 
    right: -15px; 
    color: var(--solution); 
    font-weight: 700;
}

/* Video/Image Card */
.video-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.1);
    text-align: center;
}
.video-card img {
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* FAQ */
.faq-item {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    border-left: 5px solid var(--problem);
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.1);
}
.faq-question {
    font-weight: 700;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    color: #666;
    margin-top: 15px;
    display: none;
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { max-height: 0; opacity: 0; }
    to { max-height: 400px; opacity: 1; }
}
.faq-item.active .faq-answer { display: block; }
.faq-question i { transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Related Posts */
.related {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}
.related ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
}
.related li a {
    display: block;
    padding: 15px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--problem);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1);    transition: all 0.3s ease;
}
.related li a:hover {
    transform: translateY(-5px);
    color: var(--solution);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
}

/* Keywords */
.keywords-box {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px dashed var(--problem);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}
.keywords-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.keyword-tag {
    background: linear-gradient(135deg, var(--problem), var(--warning));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.keyword-tag:hover { transform: rotate(360deg) scale(1.15); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.5em; }    .problem-solution-grid { grid-template-columns: 1fr; }
    .content-card { padding: 25px; }
    .tabs { flex-direction: column; }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--problem), var(--warning));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}
.cta-button:hover { 
    transform: translateY(-3px) rotate(360deg); 
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4); 
}

/* AdSense */
.adsense {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.1));
    border: 3px dashed var(--problem);
    text-align: center;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 15px;
    position: relative;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 0 30px rgba(231, 76, 60, 0.5); }
}
.adsense::before {
    content: 'إعلان جوجل أدسينس';
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--problem);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

.keywords { display: none; }/* End custom CSS */