/*
Theme Name: takwidfastclean
Author: https://fjomah.com/
Version: 1
*/

* {
    padding: 0;
    margin: 0;
    border: 0;
    user-select: none;
    outline: none;
    box-sizing: border-box
}

*:before,
*:after {
    box-sizing: border-box
}

body {
    background: #fff;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 2;
}

a {
    color: #333;
    text-decoration: none;
}

/* إضافة تنسيق للصورة البارزة في صفحة المقالة الفردية */
.featured-image {
    margin-bottom: 20px;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* تنسيق جميع الصور داخل المقالة */
.entry-content img, 
.entry-content .responsive-img {
    max-width: 100% !important;
    height: auto !important;
}

/* تنسيقات قسم الأسئلة الشائعة - تصميم عصري ومحدث */
.faq {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="0%" r="100%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>') repeat-x;
    opacity: 0.1;
}

.faq .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    transition: all 0.3s ease;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.faq-question:hover::before {
    width: 8px;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 50px;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: #667eea;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 300;
    color: #667eea;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    background: rgba(102, 126, 234, 0.2);
}

.faq-answer {
    padding: 0 32px 32px 32px;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    display: none;
    animation: fadeInDown 0.4s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 20px;
}

/* تأثيرات الانيميشن */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .faq .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 40px;
    }
    
    .faq-question::after {
        right: 24px;
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
    
    .faq-answer {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 35px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
    display: block;
    margin: 15px auto;
    border-radius: 5px;
    object-fit: contain;
}

/* تنسيق أيقونات الميزات */
.feature-icon {
    margin-bottom: 15px;
}

.feature-icon img {
    width: 64px;
    height: 64px;
    display: inline-block;
}

/* تنسيق البانر الرئيسي */
.banner {
    padding: 60px 0;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner .wrapper {
    position: relative;
    z-index: 2;
}

.banner-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.banner-content {
    flex: 1;
    color: #fff;
}

.banner-content h1 {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.4;
}

.banner-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.banner-image {
    flex: 0 0 40%;
    text-align: center;
}

.animated-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* تنسيق البانر للهاتف المحمول */
@media (max-width: 767px) {
    .banner {
        padding: 40px 0;
    }
    
    .banner-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .banner-image {
        order: -1; /* جعل الصورة في الأعلى */
        margin-bottom: 20px;
        flex: 0 0 auto;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

a:active,
a:hover {
    outline-width: 0;
}

button {
    -webkit-appearance: button;
    cursor: pointer;
}

figure,
header,
footer {
    display: block;
}

.site {
    position: relative;
    word-wrap: break-word;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    padding: 0 10px;
}

.wrapper:before,
.gallery:before,
.gallery:after,
.clear:before,
.clear:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.gallery:after,
.clear:after {
    clear: both;
}

.wrapper:after {
    clear: both;
    content: "";
    display: block;
}


/*--------------------------------------------------------------
2.0 Accessibility
--------------------------------------------------------------*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}


/*--------------------------------------------------------------
3.0 Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.txtcenter {
    text-align: center;
}

.txtright {
    text-align: right;
}

.txtleft {
    text-align: left;
}

.txtjustify {
    text-align: justify;
}

.svg-xs {
    width: 1em;
}

.ml-1 {
    margin-left: 10px
}

.svg-color {
    color: #f1c50e
}

.main-navigation ul,
.unstyled {
    list-style: none;
}

.list-inline li {
    display: inline-block
}


/*--------------------------------------------------------------
4.0 header
--------------------------------------------------------------*/

.site-header {
    border-top: 3px solid #1f275c;
}

.site-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9999;
    min-height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.site-header.fixed .logo-link {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.site-header.fixed .logo-link img {
    max-height: 50px;
    width: auto;
}

.site-header.fixed .nav-bar {
    margin-top: 0
}

.site-header .wrapper {
    padding: 0;
}

.mobile-btn {
    padding: 0 15px;
}

.site-header .wrapper {
    padding: 0;
}

.top-bar {
    color: #ffffff;
    background-color: #3241ac;
}

.site-branding {
    text-align: center;
}

.logo-link,
.widget-card .img-link {
    display: inline-block;
    height: 100%;
}

.nav-bar {
    background: #fff;
    box-shadow: 0 0 9px 1px rgba(100, 100, 100, .3);
}

.menu-items,
.search-wrap,
.sub-menu,
.scrollUp {
    display: none;
}

.menu-toggle,
.search-toggle {
    background: transparent;
    padding: 7px 0;
}

.menu-items.toggled-on,
.menu-items .sub-menu.toggled-on,
.search-wrap.toggled-on {
    display: block;
}

.search-toggle {
    float: left;
}

.menu-items {
    border-top: 1px solid rgb(0, 0, 0, 0.1);
    padding-right: 10px;
}

.menu-items li {
    position: relative;
}

.menu-items>li {
    border-bottom: 1px solid rgb(0, 0, 0, 0.1);
    margin-top: 5px;
}

.menu-items>li:last-child {
    border-bottom: 0;
}

.menu-items a {
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    display: block;
    padding: 5px 0;
    text-decoration: none;
}

.menu-items li:hover>a {
    color: #205D86
}

.icon-angle-down {
    border: solid #5f6f81;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.dropdown-toggle {
    background: 0 0;
    display: block;
    left: 0;
    padding: 9px;
    position: absolute;
    top: 0;
}

.dropdown-toggle.toggled-on .icon-angle-down {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg)
}

.menu-items .sub-menu {
    padding-right: 20px;
}

.search-wrap {
    padding: 15px;
    border-top: 1px solid #c8d7e1;
}

.search-form {
    display: flex;
    justify-content: center;
}

.search-input {
    border: 1px solid #c8d7e1;
    border-radius: 0 5px 5px 0;
    width: 80%;
    padding: 11px;
    -webkit-appearance: textfield;
}

.search-submit {
    background: #3f51b5;
    border-radius: 5px 0 0 5px;
    padding: 0 10px;
}


/*--------------------------------------------------------------
4.0 footer
--------------------------------------------------------------*/

.site-footer {
    padding: 30px 0;
    overflow: hidden;
    background: #162635;
    color: #d8d8d8
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .block {
    margin: 15px 0;
}

.site-footer .subtitle,
.site-footer a {
    color: #fff;
}

/* تنسيق الأعمدة الثلاثة في الفوتر */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-columns .block {
    width: 30%;
}

/* تنسيق العمود الأول: عن الشركة */
.company-name {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.company-desc {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* تنسيق العمود الثاني: روابط هامة */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #d8d8d8;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

.subtitle {
    position: relative;
    margin-bottom: 33px;
    font-size: 22px
}

.subtitle:after {
    content: "";
    background: #3f51b5;
    right: 0;
    width: 40px;
    height: 2px;
    position: absolute;
    bottom: -9px;
}

/* تنسيق العمود الثالث: تواصل معنا */
.hcontact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-left: 10px;
    display: inline-block;
}
/* تنسيقات قسم آراء العملاء */
.testimonials-container {
    width: 100%;
    margin: 0 auto;
}

.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testimonial-card {
    width: 31%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.star {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: bold;
    color: #333;
}

/* تنسيقات للشاشات الصغيرة */
@media only screen and (max-width: 767px) {
    .testimonial-card {
        width: 100%;
    }
    
    .footer-columns {
        flex-direction: column;
    }
    
    .footer-columns .block {
        width: 100%;
        margin-bottom: 30px;
    }
}

.footer-latest-card:not(:nth-child(3n+1)) {
    margin-right: 2.1795989538%;
}

.footer-latest-card img {
    border-radius: 10px;
    border: 2px solid #666;
    margin-bottom: 7px;
}

.footer-latest-card .img-link {
    display: inline-block;
    height: 100%;
    margin-left: 15px;
}

.footer-latest-card p {
    font-size: 13px;
}

.footer-logo {
    margin: 7px 10px;
}

.site-footer .about p {
    text-align: justify;
}

.social-follow {
    margin-top: 15px
}

.social-follow li {
    margin-left: 11px;
    display: inline-block;
    color: #848134;
    font-size: 18px !important;
    background: rgba(0, 0, 0, .2);
    border-radius: 50%;
    border: solid 1px #3f51b5;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
}

.hcontact li {
    margin-bottom: 12px;
}

.social-share .facebook {
    background-color: #2f55a4;
}

.social-share .twitter {
    background-color: #1E90FF;
}

.social-share .youtube {
    background-color: #ff0000;
}

.site-copyright {
    border-top: solid 1px rgba(237, 237, 237, .2);
    color: #fff;
    padding: 15px;
}

.site-copyright p {
    margin-bottom: 10px;
}

.scrollUp {
    position: fixed;
    bottom: 6px;
    z-index: 9999;
    text-align: center;
    z-index: 9999;
}

.scrollUp {
    background-color: #fff;
    left: 8px;
    width: 45px;
    height: 45px;
    line-height: 55px;
    border-radius: 50%;
}

.scrollUp.toggled-on {
    display: block;
}

.scrollUp {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19)
}
@media only screen and (max-width: 767px) {
    .site-header.fixed {
        min-height: 60px;
        display: flex;
        align-items: center;
    }
    
    .site-header.fixed .wrapper {
        width: 100%;
        position: relative;
    }
    
    .site-header.fixed .site-branding {
        text-align: center;
        margin: 5px 0;
    }
    
    .site-header.fixed .logo-link {
        position: relative;
        left: auto;
        transform: none;
        max-height: 50px;
        display: inline-block;
    }
    
    .site-header.fixed .logo-link img {
        max-height: 40px;
        width: auto;
    }
}

@media only screen and (min-width: 768px) {
    .wrapper {
        max-width: 1200px;
    }
    .site-header .wrapper {
        max-width: 1300px;
    }
}

@media only screen and (min-width: 992px) {
    .site-header {
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
    }
    .site-branding {
        text-align: right;
    }
    .site-header.fixed .logo-link {
        position: static;
        text-align: center;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .content-right {
        width: 70%;
        float: right;
    }
    .side-left {
        width: 27%;
        float: left;
    }
    .widget-card {
        width: 47.0588235294%;
    }
    .site-branding {
        width: 16%;
    }
    .site-branding {
        vertical-align: middle;
    }
    .nav-bar {
        background-color: transparent;
        width: 84%;
        box-shadow: none;
        position: relative;
    }
    .mobile-btn {
        width: 3%;
        margin-top: 7px;
    }
    .mobile-btn {
        float: left;
    }
    .site-branding,
    .nav-bar,
    .site-footer .block {
        float: right;
    }
    .site-footer .block {
        margin: 15px;
    }
    .site-footer .about {
        width: 35%;
    }
    .site-branding .wrapper {
        text-align: right;
        padding: 0
    }
    .search-wrap {
        position: absolute;
        left: 0;
        background: #fff;
        top: 64px;
        line-height: 30px;
        z-index: 9999;
        border: 1px solid #c8d7e1;
    }
    .menu-items {
        text-align: center;
        display: block;
        border: 0
    }
    .dropdown-toggle,
    .menu-toggle {
        display: none;
    }
    .menu-items>li {
        display: inline-block;
        border: 0;
        padding: 9px 0;
    }
    .menu-items>li>a {
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0 20px;
    }
    .menu-items li.has-child>a:after {
        content: " ";
        border: solid #343434;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-right: 5px;
        position: relative;
        top: -3px;
        right: 0;
    }
    .menu-items .sub-menu {
        background: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 180px;
        padding-right: 0;
        border-radius: 2px;
        -webkit-box-shadow: 0 20px 29px 0 rgba(0, 0, 0, .4);
        box-shadow: 0 20px 29px 0 rgba(0, 0, 0, .4);
        border: 1px solid #e5e5e5;
        z-index: 9999;
    }
    .menu-items li.has-child:hover .sub-menu {
        display: block;
    }
    .menu-items .sub-menu a {
        padding: 10px 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    .site-info {
        width: 45%;
    }
    .footer-latest {
        width: 23%;
    }
    .second-menu {
        width: 21%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .terms {
        width: 50%;
        text-align: justify;
    }
    .site-footer .wrapper {
        padding: 30px 0;
    }
}