:root {
    --primary-green: #06C16A;
    --primary-green-light: #06C16A;
    --primary-green-dark: #0f5f32;
    --secondary-gold: #DAA520;
    --light-bg: #F9FFF9;
    --dark-text: #1A3C1A;
    --light-text: #4A7856;
    --white: #FFFFFF;
    --shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Scheherazade New", serif;
    line-height: 1.8;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

body.rtl {
    text-align: right;
    direction: rtl;
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green-light);
    text-decoration: none;
}

.logo-icon {
    color: var(--primary-green-light);
    font-size: 2.2rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    /* direction: rtl;
    text-align: right; */
    width: 90%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-left: 2rem;
    width: 74%;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green-light);
    background-color: rgba(46, 139, 87, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 1rem;
    width: 0;
    height: 2px;
    background-color: var(--primary-green-light);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: calc(100% - 2rem);
}

.cta-button {
    background-color: var(--primary-green-light);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Scheherazade New", serif;
}

.cta-button:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-green-light);
    border: 2px solid var(--primary-green-light);
}

.cta-button.secondary:hover {
    background-color: rgba(46, 139, 87, 0.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-green-light);
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav {
    display: none;
}

.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(60, 179, 113, 0.1) 100%);
    position: relative;
    overflow: hidden;
}
#hero-text_text {
    display: inline-block; font-weight: 900; font-size: 2.3rem; letter-spacing: 1.5; margin: 3px
}
#hero-text_bullet {
    background-color: var(--primary-green); margin-top:14px; width: 16px;height: 16px; border-radius: 50%; flex-shrink: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232e8b57' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text  {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.floating-element {
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    background-color: rgba(46, 139, 87, 0.1);
}

.floating-element:nth-child(2) {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
    background-color: rgba(218, 165, 32, 0.1);
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
    background-color: rgba(46, 139, 87, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.features {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-green-light);
    border-radius: 2px;
}

.section-header p {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--primary-green-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 139, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--primary-green-light);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
}

.how-it-works {
    padding: 6rem 0;
    background-color: rgba(46, 139, 87, 0.03);
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
    max-width: 250px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-green-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-green-light);
    margin-bottom: 1.5rem;
}

.for-businesses {
    padding: 6rem 0;
}

.business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.business-text h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.business-text p {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.business-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.business-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: space-between;
    gap: 10px;
}

.business-list i {
    color: var(--primary-green-light);
    margin-top: 5px;
}

footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-column .link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline !important;
    text-decoration-color: #06C16A;
    text-underline-offset: 10px;
    transition: var(--transition);
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-decoration-none:hover {
    text-decoration: none !important;
}
.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}
.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-green-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green-light);
    padding-right: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 1064px) {
    .hero-content, .business-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    #hero-text_text {
        display: inline-block; font-weight: 900; font-size: 1.8rem; letter-spacing: 0.5; margin: 3px
        }
    #hero-text_bullet {
            background-color: var(--primary-green); margin-top:14px; width: 14px;height: 14px; border-radius: 50%; flex-shrink: 0;
        }
    .hero-buttons {
        justify-content: center;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        left: 40px;
    }
    
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem;
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav-links {
        list-style: none;
        margin-bottom: 2rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 1rem;
    }
    
    .mobile-nav-links a {
        display: block;
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 500;
        padding: 0.5rem 1rem;
        font-weight: 600;
        border-radius: var(--border-radius);
        transition: var(--transition);
        border-right: 3px solid transparent;
    }
    
    .mobile-nav-links a:hover,
    .mobile-nav-links a.active {
        background-color: rgba(46, 139, 87, 0.05);
        color: var(--primary-green-light);
        border-right-color: var(--primary-green-light);
    }
    
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .mobile-nav-buttons .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(46, 139, 87, 0.1);
    }
    
    .mobile-nav-header .logo {
        font-size: 1.5rem;
    }
    
    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark-text);
        cursor: pointer;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .section-header h2 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    }
    .business-text h2 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    }
}

@media (max-width: 512px) {
     #hero-text_text {
        display: inline-block; font-weight: 700; font-size: 1.5rem; letter-spacing: 0.5; margin: 3px
        }
    #hero-text_bullet {
            background-color: var(--primary-green); margin-top:12px; width: 12px;height: 14px; border-radius: 50%; flex-shrink: 0;
        }
    
    .feature-card, .step {
        padding: 2rem 1.5rem;
    }
    
    .mobile-nav {
        width: 75%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
.circle-text-basic {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.circle-basic {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #2E8B57; 
    flex-shrink: 0;
}

.text-basic {
    font-family: "Scheherazade New", serif;
    font-size: 14px;
    color: #333;
}
.circle-text-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px;
}
.circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}
.circle.green { background-color: #2E8B57; }
.circle.blue { background-color: #3498db; }
.circle.red { background-color: #e74c3c; }
.circle.yellow { background-color: #f1c40f; }
.circle.purple { background-color: #9b59b6; }

.circle-text {
    font-family: "Scheherazade New", serif;
    color: #333;
}

.code-block {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-family: monospace;
    font-size: 13px;
    overflow-x: auto;
}
.errorlist {
    color: red;
}
.a_btn {
    display: inline-block;
    text-decoration: none;
    color: black;
    background-color: lightgrey;
    padding: 2px 12px;
    padding-bottom: 6px;
    border-radius: 4px;
    margin: 4px;
}
.a_btn:hover {
    background-color: black;
    color: white;
    text-decoration: none;
}
.form-check-input {
    margin-right: 10px;
    width: 24px !important;
    height: 24px !important;
    border: #0391b4 4px solid !important;
    box-shadow: none !important;
    cursor: pointer;
    color: #0391b4 !important;
}
.bullet {
    background-color: #03191f;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.bullet-small {
    width: 5px;
    height: 5px;
}
.bullet-medium {
    width: 8px;
    height: 8px;
}
.bullet-large {
    width: 12px;
    height: 12px;
}
input[type="checkbox"] {
     margin-right: 10px;
    width: 18px !important;
    height: 18px !important;
    border: #0391b4 4px solid !important;
    box-shadow: none !important;
    cursor: pointer;
    color: #0391b4 !important;
}
.form-control {
    width: 86% !important;
}