   :root {
    --primary-color: #153148;          /* اللون الأساسي */
    --primary-dark: #0E7A12;           /* اللون الأساسي داكن */
    --primary-light: #E8F5E9;          /* اللون الأساسي فاتح */
    --secondary-color: #313131;        /* اللون الثانوي */
    --dark-color: #157;                /* اللون الداكن */
    --light-color: #F8F9FA;            /* اللون الفاتح */
    --success-color: #27AE60;          /* لون النجاح */
    --danger-color: #E74C3C;           /* لون الخطأ */
    --warning-color: #F39C12;          /* لون التحذير */
    --text-dark: #2D3E50;              /* لون النص الداكن */
    --text-light: #FFFFFF;             /* لون النص الفاتح */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* الظل */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* الانتقال */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #F9F9F9;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: var(--transition);
}

.nav-links li {
    margin-right: 25px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    z-index: 10;
    top: 100%;
    right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 10px 16px;
    font-size: 14px;
    display: block;
    transition: var(--transition);
    text-align: right;
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-right: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-light);
    z-index: 1001;
}






































.mySlides {display: none}
img {
  vertical-align: middle;

  border-radius: 10px;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  display: flex;


}

.next {
  left:  0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,.08);
  
}

.text {
  color: #222;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--primary-color);
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}



























.hero {
    display: flex;
    align-items: center;
    padding: 0px 5% 0px;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    min-height: 90vh;
    margin-top: 70px;
    color: #222;
    position: relative;
    overflow: hidden;
    
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.flaticon.com/svg/static/icons/solid/straight/money.svg') no-repeat;
    background-position: 120% center;
    background-size: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-content .small-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(128, 128, 128, 0.3);
}

.btn-outline {
    border: 2px solid white;
    color: #333;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

.gateways {
    padding: 100px 5%;
    background-color: white;
}

.gateways-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.gateway-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;

}
li{
  text-align: rtl;
}

.gateway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.2);
}

.gateway-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gateway-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);

}
.gateway-card p{
  border-bottom: 1px solid #ddd;
}

.gateway-features {
  display: flex;
  flex-direction: column;
  
  margin-top: 20px;

}

.gateway-features li {
    margin-bottom: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-right: 10px;
}

.gateway-features i {
    color: var(--primary-color);
}

.features {
    padding: 100px 5%;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(26px, 3vw, 32px);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;

}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.2);
}

.feature-card:hover * {
    color: white;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.feature-card p {
    font-size: 16px;
    transition: var(--transition);
}


.tutorials {
    padding: 100px 5%;
    background-color: white;
}

.tutorials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.video-info p {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}


.how-it-works {
    padding: 100px 5%;
    background-color: var(--primary-light);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.step {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    background: #e8f5e9;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}


.screenshots {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.screenshot-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.screenshot {
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    transition: var(--transition);
}

.screenshot:hover {
    transform: scale(1.03);
}

.download {
    padding: 100px 5%;
    background-color: white;
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(44, 62, 80, 0.3);
}

.download-btn i {
    font-size: 24px;
    margin-left: 10px;
}


.faq {
    padding: 100px 5%;
    background-color: #f5f5f5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.faq-question {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


.footer {
    background-color: #333;
    color: var(--text-light);
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}
.footer-links li i {
    padding-left: 5px;
}

.footer-links a {
    color: #B0C4D6;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #3b4a54;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: #B0C4D6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #B0C4D6;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
        justify-content: center;
        padding: 70px 5% 20px;
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    .screenshot-container {
        
        gap: 15px;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
    }
    
    .screenshot {
        min-width: 400px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        scroll-snap-align: center;
        transition: var(--transition);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background-color: rgba(0, 0, 0, 0.1);
        width: 100%;
        margin-top: 10px;
        padding-right: 15px;
        opacity: 1;
        transform: none;
        border-radius: 4px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-right: 5px;
    }
    
    .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .features-grid, .tutorials-container {
        grid-template-columns: 1fr;
    }
    .screenshot-container {
        
        gap: 5px;
        padding: 5px 0;
        
    }
    
    .screenshot {
        min-width: 450px;
        
    }
}



.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p, .info-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, textarea{
    border: 1px solid #448;

} 
.form-group textarea{
 background: #f9f9f9;
 
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 178, 25, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-left: 0;
        margin-bottom: 10px;
    }
}





.terms-container {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.terms-section {
    margin-bottom: 30px;
}

.terms-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.terms-section h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.terms-section p, .terms-section ul {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.terms-section ul {
    padding-right: 20px;
}

.terms-section li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
}

.terms-section li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight {
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    margin: 20px 0;
}

.update-date {
    text-align: left;
    font-style: italic;
    color: var(--dark-gray);
    margin-top: 40px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
}

@media (max-width: 768px) {
    .terms-container {
        margin-top: 60px;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 20px;
    }
}