/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/
html {
  font-size: 14px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
/* القائمة */
nav {
    display: flex;
    gap: 25px;
}

    nav a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: bold;
        transition: color 0.3s;
    }

        nav a:hover {
            color: #d6249f;
        }

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Almarai', sans-serif;
    /*background: linear-gradient(165deg,#f0fdf4,#dcfce7 35%,#e3fdecce 70%,#d4ffe4d8);*/
    direction: rtl;
    text-align: right;
  /*  font-family: "Cairo", "Tajawal", "Arial", sans-serif;*/
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.slider {
    width: 100%; /* full screen width */
    height: 400px; /* adjust height as needed */
    overflow: hidden;
    position: relative;
}

    .slider img {
        width: 100%; /* full width */
        height: 100%;  /*fill slider height */
        object-fit: cover; /* maintain image aspect ratio */
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        .slider img.active {
            opacity: 1;
        }

/* Hero for all screens */
.hero {
    display: block;
    position: relative;
    width: 100%;
    height: 400px; /* default height for mobile */
    background-image: url('/Img/aboutus-hero.png');
    background-size: cover;
    background-position: center;
}

/* Hero content grid */
.hero-content {
    display: flex; /* stack items vertically by default on mobile */
    flex-direction: column;
    height: 100%;
}

/* Left content */
.hero-left {
    display: flex;
    align-items: center;
    justify-content: center; /* center content on mobile */
    width: 100%;
    height: 100%;
    text-align: center; /* center text on mobile */
    padding: 2rem;
}

/* Right content (optional for larger screens) */
.hero-right {
    display: none; /* hide on mobile */
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.7), rgba(255,255,255,0));
}

/* Medium and up (desktop) */
@media (min-width: 768px) {
    .hero {
        height: 100vh;
        max-height: 600px;
        background-attachment: fixed; /* fixed background for desktop */
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100%;
    }

    .hero-left {
        justify-content: flex-start; /* left align text on desktop */
        text-align: left;
        padding: 0 3rem;
    }

    .hero-right {
        display: block; /* show right div on desktop */
    }
}
.topheader{
   background-color: red;
   height:15px;
}

.section-title {
    text-align: right;
    direction: rtl;
    margin: 8px 0;
}

    .section-title .small-title {
        display: inline-block;
        font-size: 14px;
        color: #555;
        position: relative;
        padding-right: 60px;
    }

        .section-title .small-title::after {
            content: "";
            position: absolute;          
            top: 50%;
            width: 45px;
            height: 2px;
            background-color: red; /* ذهبي */
            transform: translateY(-50%);
        }

    .section-title h2 {
        font-size: 42px;
        font-weight: bold;
        margin-top: 10px;
        color: #000;
        padding-right:56px;
    }
/* السوشيال */
.social {
    display: flex;
    gap: 15px;
    margin:10px;
}

    .social a {
        font-size: 30px;
        text-decoration: none;

    }

        .social a.twitter {
            color: #1DA1F2;
        }

        .social a.facebook {
            color: #1877F2;
        }

        .social a.instagram {
            background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 37px;
        }
.fa-instagram:before, .fa-instagram:before {
    font-size: 50px;
}
.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a";
    font-size: 50px;
}

.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* منيو الجوال */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color:brown;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: right 0.4s ease-in-out;
    z-index: 999;
}

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
    }

.mobile-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

    .mobile-social a {
        font-size: 30px;
    }

.close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

/* استجابة */
@media(max-width: 900px) {
    nav {
        display: none;
    }

    .burger {
        display: block;
    }
}
/* الشعار */
.logo img {
    height: 80px;
    width: 100%;
}
.contact-section {
    padding: 60px 20px;
    background: #fff;
    direction: rtl;
  
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* FORM */
.contact-form {
    flex: 2;
}

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form .row {
        display: flex;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ddd;
        font-size: 15px;
    }

    .contact-form textarea {
        height: 180px;
        border: 2px solid #ddd;
        resize: vertical;
    }

    .contact-form button {
        width: 180px;
        padding: 14px;
        background: #E63946;
        border: none;
        font-size: 16px;
        cursor: pointer;
        align-self: center;
        border-radius: 35px;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #E63946 !important;
        outline: none;
    }
/* INFO */
.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.icon {
    width: 45px;
    height: 45px;
    background: #E63946;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 20px;
}

.info-item h4 {
    margin: 0 0 5px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        order: 1; /* TOP */
    }

    .contact-info {
        order: 2; /* BOTTOM */
        margin-top: 40px;
    }

    .contact-form .row {
        flex-direction: column;
    }
}

ul {
    margin: 0px;
    padding: 0px;
}


.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: #ff5e14;
    }

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

    .footer-widget ul li a:hover {
        color: #ff5e14;
    }

    .footer-widget ul li a {
        color: #878787;
        text-transform: capitalize;
    }

.subscribe-form {
    position: relative;
    overflow: hidden;
}

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: #2E2E2E;
        border: 1px solid #2E2E2E;
        color: #fff;
    }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: #ff5e14;
        padding: 13px 20px;
        border: 1px solid #ff5e14;
        top: 0;
    }

        .subscribe-form button i {
            color: #fff;
            font-size: 22px;
            transform: rotate(-6deg);
        }

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

    .copyright-text p a {
        color: #ff5e14;
    }

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

    .footer-menu li:hover a {
        color: #ff5e14;
    }

    .footer-menu li a {
        font-size: 14px;
        color: #878787;
    }

<style id="custom-chaty-css" >
#chaty-widget-0 .Whatsapp-channel .color-element {
    fill: #49E670;
    color: #49E670;
}

#chaty-widget-0 .channel-icon-Whatsapp .color-element {
    fill: #49E670;
    color: #49E670;
}

#chaty-widget-0 .Whatsapp-channel .chaty-custom-icon {
    background-color: #49E670;
}

#chaty-widget-0 .Whatsapp-channel .chaty-svg {
    background-color: #49E670;
}

#chaty-widget-0 .channel-icon-Whatsapp .chaty-svg {
    background-color: #49E670;
}

.chaty-chat-view-0 .Whatsapp-channel .chaty-custom-icon {
    background-color: #49E670;
}

.chaty-chat-view-0 .Whatsapp-channel .chaty-svg {
    background-color: #49E670;
}

.chaty-chat-view-0 .channel-icon-Whatsapp .chaty-svg {
    background-color: #49E670;
}

#chaty-widget-0 .Phone-channel .color-element {
    fill: rgb(254, 131, 0);
    color: rgb(254, 131, 0);
}

#chaty-widget-0 .channel-icon-Phone .color-element {
    fill: rgb(254, 131, 0);
    color: rgb(254, 131, 0);
}

#chaty-widget-0 .Phone-channel .chaty-custom-icon {
    background-color: rgb(254, 131, 0);
}

#chaty-widget-0 .Phone-channel .chaty-svg {
    background-color: rgb(254, 131, 0);
}

#chaty-widget-0 .channel-icon-Phone .chaty-svg {
    background-color: rgb(254, 131, 0);
}

.chaty-chat-view-0 .Phone-channel .chaty-custom-icon {
    background-color: rgb(254, 131, 0);
}

.chaty-chat-view-0 .Phone-channel .chaty-svg {
    background-color: rgb(254, 131, 0);
}

.chaty-chat-view-0 .channel-icon-Phone .chaty-svg {
    background-color: rgb(254, 131, 0);
}

#chaty-widget-0 .chaty-channel-list .chaty-channel {
    width: 44px;
    height: 44px;
}

    #chaty-widget-0 .chaty-channel-list .chaty-channel > a {
        width: 44px;
        height: 44px;
    }

        #chaty-widget-0 .chaty-channel-list .chaty-channel > a .chaty-custom-icon {
            display: block;
            width: 44px;
            height: 44px;
            line-height: 44px;
            font-size: 22px;
        }

    #chaty-widget-0 .chaty-channel-list .chaty-channel button {
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        outline: none;
        border-radius: 50%;
    }

    #chaty-widget-0 .chaty-channel-list .chaty-channel .chaty-svg {
        width: 44px;
        height: 44px;
    }

        #chaty-widget-0 .chaty-channel-list .chaty-channel .chaty-svg img {
            width: 44px;
            height: 44px;
        }

    #chaty-widget-0 .chaty-channel-list .chaty-channel span.chaty-icon {
        width: 44px;
        height: 44px;
    }

    #chaty-widget-0 .chaty-channel-list .chaty-channel a {
        width: 44px;
        height: 44px;
    }

    #chaty-widget-0 .chaty-channel-list .chaty-channel .chaty-svg .chaty-custom-channel-icon {
        width: 44px;
        height: 44px;
        line-height: 44px;
        display: block;
        font-size: 22px;
    }

#chaty-widget-0 .chaty-i-trigger .chaty-cta-button {
    background-color: #4F6ACA;
}

    #chaty-widget-0 .chaty-i-trigger .chaty-cta-button button {
        background-color: #4F6ACA;
    }

#chaty-widget-0 .chaty-i-trigger .chaty-channel {
    width: 44px;
    height: 44px;
}

    #chaty-widget-0 .chaty-i-trigger .chaty-channel > a {
        width: 44px;
        height: 44px;
    }

        #chaty-widget-0 .chaty-i-trigger .chaty-channel > a .chaty-custom-icon {
            display: block;
            width: 44px;
            height: 44px;
            line-height: 44px;
            font-size: 22px;
        }

    #chaty-widget-0 .chaty-i-trigger .chaty-channel button {
        width: 44px;
        height: 44px;
        margin: 0;
        padding: 0;
        outline: none;
        border-radius: 50%;
    }

    #chaty-widget-0 .chaty-i-trigger .chaty-channel .chaty-svg {
        width: 44px;
        height: 44px;
    }

        #chaty-widget-0 .chaty-i-trigger .chaty-channel .chaty-svg img {
            width: 44px;
            height: 44px;
        }

    #chaty-widget-0 .chaty-i-trigger .chaty-channel span.chaty-icon {
        width: 44px;
        height: 44px;
    }

    #chaty-widget-0 .chaty-i-trigger .chaty-channel a {
        width: 44px;
        height: 44px;
    }

    #chaty-widget-0 .chaty-i-trigger .chaty-channel .chaty-svg .chaty-custom-channel-icon {
        width: 44px;
        height: 44px;
        line-height: 44px;
        display: block;
        font-size: 22px;
    }

#chaty-widget-0 .chaty-i-trigger .ch-pending-msg {
    background-color: #dd0000;
    color: #ffffff;
}

#chaty-widget-0 .chaty-i-trigger .chaty-channel .chaty-svg .widget-fa-icon {
    line-height: 44px;
    font-size: 22px;
}

#chaty-widget-0 .chaty-channel-list {
    height: 104px;
}

#chaty-widget-0 .chaty-channel-list {
    width: 52px;
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(1) {
    -webkit-transform: translateY(-104px);
    transform: translateY(-104px);
}

#chaty-widget-0 .chaty-open.above-chaty.has-chatway .chaty-channel-list .chaty-channel:nth-child(1) {
    -webkit-transform: translateY(-156px);
    transform: translateY(-156px);
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(2) {
    -webkit-transform: translateY(-52px);
    transform: translateY(-52px);
}

#chaty-widget-0 .chaty-open.above-chaty.has-chatway .chaty-channel-list .chaty-channel:nth-child(2) {
    -webkit-transform: translateY(-104px);
    transform: translateY(-104px);
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(3) {
    -webkit-transform: translateY(-0px);
    transform: translateY(-0px);
}

#chaty-widget-0 .chaty-open.above-chaty.has-chatway .chaty-channel-list .chaty-channel:nth-child(3) {
    -webkit-transform: translateY(-52px);
    transform: translateY(-52px);
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(1) {
    -webkit-transform: translateY(-104px);
    transform: translateY(-104px);
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(2) {
    -webkit-transform: translateY(-52px);
    transform: translateY(-52px);
}

#chaty-widget-0 .chaty-open .chaty-channel-list .chaty-channel:nth-child(3) {
    -webkit-transform: translateY(-0px);
    transform: translateY(-0px);
}

#chaty-widget-0 .chaty-widget {
    bottom: 25px
}

#chaty-widget-0 .chaty-widget {
    right: 25px;
    left: auto;
}

.chaty-outer-forms.pos-right.chaty-form-0 {
    right: 25px;
    left: auto;
}

.chaty-outer-forms.active.chaty-form-0 {
    -webkit-transform: translateY(-84px);
    transform: translateY(-84px)
}

#chaty-widget-0.chaty:not(.form-open) .chaty-widget.chaty-open + .chaty-chat-view {
    -webkit-transform: translateY(-84px);
    transform: translateY(-84px)
}

#chaty-widget-0 .chaty-tooltip:after {
    background-color: rgb(255, 255, 255);
    color: #333333
}

#chaty-widget-0 .chaty-tooltip.pos-top:before {
    border-top-color: rgb(255, 255, 255);
}

#chaty-widget-0 .chaty-tooltip.pos-left:before {
    border-left-color: rgb(255, 255, 255);
}

#chaty-widget-0 .chaty-tooltip.pos-right:before {
    border-right-color: rgb(255, 255, 255);
}

#chaty-widget-0 .on-hover-text {
    background-color: rgb(255, 255, 255);
    color: #333333
}

#chaty-widget-0 .chaty-tooltip.pos-top .on-hover-text:before {
    border-top-color: rgb(255, 255, 255);
}

#chaty-widget-0 .chaty-tooltip.pos-left .on-hover-text:before {
    border-left-color: rgb(255, 255, 255);
}

#chaty-widget-0 .chaty-tooltip.pos-right .on-hover-text:before {
    border-right-color: rgb(255, 255, 255);
}

.chaty-outer-forms.chaty-form-0 .chaty-agent-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

#chaty-form-0-chaty-chat-view .chaty-view-header {
    background-color:;
}

#chaty-form-0-chaty-chat-view .chaty-view-header {
    color:;
}

    #chaty-form-0-chaty-chat-view .chaty-view-header svg {
        fill:;
    }

.chaty-outer-forms.chaty-contact-form-box.chaty-form-0 .chaty-contact-inputs {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}

#chaty-form-0-Whatsapp .chaty-whatsapp-body {
    max-height: calc(100vh - 219px);
    overflow-y: auto;
}

#chaty-widget-0, #chaty-widget-0 .chaty-tooltip:after {
    font-family: Changa;
}
/* Loader background */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* change color if needed */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
   
}

/* Spinner */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #007bff; /* your theme color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Footer Main */
.footer1 {
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
    color: #fff;
    padding: 40px 20px 10px;
 
}

/* Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo */
.footer-logo img {
    width: 120px;
}

/* Contact */
.footer-contact p {
    margin: 8px 0;
    font-size: 16px;
}

.footer-contact i {
    margin-left: 8px;
    color: #E63946;
}

/* Social Icons */
.footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: #00c6ff;
        transform: translateY(-5px);
    }

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 0 8px;
    }
}
