/* ==========================================
TrafficWeb Premium
style.css
========================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
ROOT
========================================== */

:root{

    --primary:#2563eb;

    --primary-dark:#1d4ed8;

    --secondary:#0f172a;

    --success:#22c55e;

    --warning:#f59e0b;

    --danger:#ef4444;

    --light:#f8fafc;

    --white:#ffffff;

    --text:#334155;

    --border:#e2e8f0;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.3s ease;

}

/* ==========================================
RESET
========================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f9ff;

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

/* ==========================================
GLOBAL
========================================== */

.section-padding{

    padding:100px 0;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

    color:var(--secondary);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#64748b;

}

.section-badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--primary);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

/* ==========================================
BUTTONS
========================================== */

.btn-primary{

    background:var(--primary);

    border:none;

    border-radius:12px;

    padding:14px 28px;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline-primary{

    border-radius:12px;

    padding:14px 28px;

    font-weight:600;

}

/* ==========================================
LOADER
========================================== */

#loader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.loader-spinner{

    width:60px;

    height:60px;

    border:4px solid #dbeafe;

    border-top:4px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/* ==========================================
TOAST
========================================== */

#toast{

    position:fixed;

    top:20px;

    right:20px;

    background:var(--primary);

    color:#fff;

    padding:14px 22px;

    border-radius:12px;

    z-index:9999;

    opacity:0;

    transform:translateY(-20px);

    transition:.3s;

}

#toast.show{

    opacity:1;

    transform:translateY(0);

}
/* ==========================================
NAVBAR
========================================== */

.navbar{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

    padding:15px 0;

}

.navbar-brand{

    font-size:28px;

    font-weight:800;

    color:var(--primary)!important;

}

.navbar-nav .nav-link{

    color:var(--secondary);

    font-weight:500;

    margin-left:20px;

    transition:var(--transition);

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

/* ==========================================
HERO
========================================== */

.hero{

    padding-top:120px;

    padding-bottom:80px;

    background:
    linear-gradient(
    135deg,
    #eff6ff 0%,
    #ffffff 100%);

}

.hero-badge{

    display:inline-block;

    background:#dbeafe;

    color:var(--primary);

    padding:10px 20px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:20px;

}

.hero p{

    font-size:18px;

    color:#64748b;

    margin-bottom:30px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.hero-image{

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/* ==========================================
TRUSTED PLATFORMS
========================================== */

.trusted-platforms{

    padding:80px 0;

    background:#fff;

}

.platform-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.platform-card:hover{

    transform:translateY(-8px);

}

.platform-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:15px;

}

.platform-card h6{

    font-weight:700;

    margin:0;

    color:var(--secondary);

}

/* ==========================================
RESPONSIVE HERO
========================================== */

@media(max-width:992px){

    .hero{

        text-align:center;

        padding-top:150px;

    }

    .hero h1{

        font-size:42px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image{

        margin-top:40px;

    }

}

@media(max-width:576px){

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

}
/* ==========================================
FEATURES
========================================== */

.features{

    background:var(--light);

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    font-size:50px;

    color:var(--primary);

    margin-bottom:20px;

}

.service-card h4{

    font-size:22px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:15px;

}

.service-card p{

    color:#64748b;

    margin:0;

}

/* ==========================================
STATISTICS
========================================== */

.statistics{

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

}

.stat-card{

    text-align:center;

    padding:30px 20px;

}

.stat-card i{

    font-size:45px;

    margin-bottom:15px;

}

.stat-card h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card p{

    font-size:16px;

    opacity:.9;

    margin:0;

}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-us{

    background:#fff;

}

.why-card{

    background:#fff;

    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow);

    height:100%;

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#dbeafe;

    color:var(--primary);

    font-size:28px;

    margin-bottom:20px;

}

.why-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--secondary);

}

.why-card p{

    color:#64748b;

    margin:0;

}

/* ==========================================
COUNTERS
========================================== */

.counter{

    font-weight:800;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .stat-card h2{

        font-size:38px;

    }

    .service-card,
    .why-card{

        padding:25px;

    }

}
/* ==========================================
PRICING
========================================== */

.pricing{

    background:var(--light);

}

.pricing-card{

    background:#fff;

    border-radius:var(--radius);

    padding:40px 30px;

    text-align:center;

    box-shadow:var(--shadow);

    position:relative;

    transition:var(--transition);

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-10px);

}

.pricing-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--secondary);

}

.pricing-card .price{

    font-size:48px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:15px;

}

.pricing-card p{

    color:#64748b;

}

.pricing-card ul{

    margin:25px 0;

}

.pricing-card ul li{

    padding:10px 0;

    border-bottom:1px solid #f1f5f9;

}

.pricing-card ul li:last-child{

    border-bottom:none;

}

.popular{

    border:3px solid var(--primary);

}

.popular-badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}

/* ==========================================
TESTIMONIALS
========================================== */

.testimonials{

    background:#fff;

}

.testimonial-card{

    background:#fff;

    border-radius:var(--radius);

    padding:30px;

    box-shadow:var(--shadow);

    height:100%;

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#fbbf24;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#64748b;

    margin-bottom:25px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

}

.client img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    margin:0;

    font-size:16px;

    font-weight:700;

}

.client span{

    font-size:14px;

    color:#94a3b8;

}

/* ==========================================
FAQ
========================================== */

.faq{

    background:var(--light);

}

.accordion-item{

    border:none;

    border-radius:16px !important;

    overflow:hidden;

    margin-bottom:15px;

    box-shadow:var(--shadow);

}

.accordion-button{

    font-weight:600;

    padding:20px;

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#eff6ff;

    color:var(--primary);

    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

    border:none;

}

.accordion-body{

    color:#64748b;

    line-height:1.8;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .pricing-card{

        padding:30px 20px;

    }

    .pricing-card .price{

        font-size:40px;

    }

}
/* ==========================================
ORDER SECTION
========================================== */

.order{

    background:#f8fafc;

}

.order-card{

    background:#fff;

    border:none;

    border-radius:24px;

    padding:10px;

    box-shadow:var(--shadow);

    margin-bottom:30px;

}

.order-card h4{

    font-size:22px;

    font-weight:700;

    color:var(--secondary);

}

/* ==========================================
FORM ELEMENTS
========================================== */

.form-label{

    font-weight:600;

    color:var(--secondary);

    margin-bottom:8px;

}

.form-control,
.form-select{

    height:55px;

    border-radius:14px;

    border:1px solid #dbe2ea;

    font-size:15px;

}

.form-control:focus,
.form-select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(37,99,235,.15);

}

/* ==========================================
VISITOR INPUT
========================================== */

.visitor-input{

    position:relative;

}

.visitor-input input{

    height:65px;

    font-size:22px;

    font-weight:700;

    padding-left:55px;

}

.visitor-icon{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:var(--primary);

    font-size:20px;

}

/* ==========================================
PRICE CARD
========================================== */

.price-card{

    background:linear-gradient(
    135deg,
    #eff6ff,
    #ffffff);

    border-radius:20px;

    padding:30px;

    border:1px solid #dbeafe;

}

.price-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.price-label{

    display:block;

    color:#64748b;

    margin-bottom:10px;

}

.price-card h2{

    font-size:50px;

    font-weight:800;

    color:var(--primary);

    margin:0;

}

.price-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#dbeafe;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:28px;

}

.price-footer{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:10px;

}

.progress{

    height:12px;

    border-radius:50px;

    overflow:hidden;

    background:#e2e8f0;

}

.progress-bar{

    background:var(--primary);

}

/* ==========================================
PAYMENT METHODS
========================================== */

.payment-options{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(160px,1fr));

    gap:15px;

}

.payment-card{

    cursor:pointer;

}

.payment-card input{

    display:none;

}

.payment-content{

    background:#fff;

    border:2px solid #e2e8f0;

    border-radius:18px;

    padding:20px;

    text-align:center;

    transition:var(--transition);

}

.payment-content i{

    display:block;

    font-size:32px;

    margin-bottom:10px;

    color:var(--primary);

}

.payment-card:hover .payment-content{

    transform:translateY(-5px);

}

.payment-card input:checked + .payment-content{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

}

.payment-card input:checked + .payment-content i{

    color:#fff;

}

/* ==========================================
BANK INFO
========================================== */

#bankInfo .card{

    border-radius:18px;

    border:none;

    box-shadow:var(--shadow);

}

/* ==========================================
UPLOAD RECEIPT
========================================== */

#receiptPreview img{

    border-radius:18px;

    box-shadow:var(--shadow);

}

#receiptUploadBox input[type="file"]{

    padding:12px;

    height:auto;

}

/* ==========================================
ORDER SUMMARY
========================================== */

.order-summary{

    background:#fff;

    border:none;

    border-radius:24px;

    box-shadow:var(--shadow);

    top:100px;

}

.order-summary h4{

    font-size:22px;

    font-weight:700;

}

.summary-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #f1f5f9;

}

.summary-total{

    text-align:center;

    padding-top:15px;

}

.summary-total h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

}

.order-summary .btn{

    height:55px;

    font-size:17px;

    font-weight:600;

    border-radius:14px;

}

/* ==========================================
SUCCESS MESSAGE
========================================== */

#successMessage{

    border-radius:14px;

    font-weight:600;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .order-summary{

        margin-top:30px;

        position:relative;

        top:0;

    }

    .price-header{

        flex-direction:column;

        text-align:center;

        gap:20px;

    }

    .price-footer{

        justify-content:center;

        text-align:center;

    }

}
/* ==========================================
CONTACT
========================================== */

.contact{

    background:#ffffff;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

    color:var(--secondary);

}

.contact-card p{

    margin:0;

    color:#64748b;

    word-break:break-word;

}

/* ==========================================
FOOTER
========================================== */

.footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 25px;
}

.footer-logo{
    font-size:34px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
}

.footer-text{
    color:#cbd5e1;
    line-height:1.8;
}

.footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#3b82f6;
    padding-left:6px;
}

.payment-icons i{
    font-size:34px;
    margin-right:15px;
    color:#fff;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    margin-right:10px;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#2563eb;
}

.footer hr{
    border-color:#334155;
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
    color:#94a3b8;
}
/* ==========================================
BACK TO TOP
========================================== */

#backToTop{

    position:fixed;

    right:20px;

    bottom:20px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    z-index:999;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    box-shadow:0 10px 25px rgba(37,99,235,.3);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

/* ==========================================
AOS FIX
========================================== */

[data-aos]{

    overflow:hidden;

}

/* ==========================================
SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .section-padding{

        padding:70px 0;

    }

    .section-title h2{

        font-size:32px;

    }

    .pricing-card,
    .testimonial-card,
    .contact-card,
    .service-card,
    .why-card{

        padding:25px;

    }

    .price-card h2{

        font-size:38px;

    }

    .summary-total h2{

        font-size:34px;

    }

    .contact-card i{

        font-size:36px;

    }

}

/* ==========================================
SMALL DEVICES
========================================== */

@media(max-width:576px){

    .hero{

        padding-top:130px;

    }

    .hero h1{

        font-size:30px;

    }

    .section-title h2{

        font-size:28px;

    }

    .navbar-brand{

        font-size:24px;

    }

    .price-card{

        padding:20px;

    }

    .price-card h2{

        font-size:32px;

    }

    .visitor-input input{

        font-size:18px;

    }

    .order-card h4,
    .order-summary h4{

        font-size:18px;

    }

    .footer{

        text-align:center;

    }

}

/* ==========================================
UTILITY
========================================== */

.text-primary{

    color:var(--primary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.rounded-custom{

    border-radius:var(--radius);

}

.shadow-custom{

    box-shadow:var(--shadow);

}
/* تقليل المسافة بين الأقسام */

#pricing{
    padding-bottom:40px !important;
}

#faq{
    padding-top:40px !important;
}

#order{
    padding-top:40px !important;
}

#features{
    padding-bottom:40px !important;
}

#contact{
    padding-top:40px !important;
}
.feature-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px; /* كانت 16 أو أكثر */
    line-height: 1.4;
}

.feature-list li i{
    color: #2563eb;
    width: 20px;
    min-width: 20px;
    font-size: 18px;
}
/* ==========================================
SUCCESS MODAL
========================================== */

.success-icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:#dcfce7;

    display:flex;

    align-items:center;

    justify-content:center;

}

.success-icon i{

    font-size:48px;

    color:#16a34a;

}

.modal-content{

    border-radius:24px;

}
.navbar{
    padding: 15px 0;
}

.navbar-brand{
    padding: 0;
}

.logo-img{
    height: 70px;
    width: auto;
    display: block;
}
/* ==========================================
   PAYPAL CHECKOUT
========================================== */

#paypalDetails{
    margin-top:25px;
}

#paypalDetails .alert{
    background:#f8fbff;
    border:1px solid #d7e7ff;
    border-radius:18px;
    padding:30px;
}

#paypalDetails h5{
    font-size:24px;
    font-weight:700;
    color:#0d3b8e;
    margin-bottom:15px;
}

#paypalDetails p{
    color:#555;
    margin-bottom:20px;
}

#paypalDetails ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

#paypalDetails ul li{
    margin-bottom:10px;
    font-size:15px;
    color:#444;
}

#paypalDetails ul li::before{
    content:"✓";
    color:#16a34a;
    font-weight:bold;
    margin-right:10px;
}

#paypal-button-container{
    width:100%;
    min-height:48px;
    margin-top:20px;
}

/* Card Fields */

.paypal-card-fields{
    margin-top:20px;
}

.card-fields-container{
    background:#fff;
    border-radius:16px;
    padding:20px;
    border:1px solid #dbeafe;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* Mobile */

@media(max-width:768px){

    #paypalDetails .alert{

        padding:20px;

    }

}
/* ==========================================
   PAYMENT LOGOS
========================================== */

.payment-logos{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    margin:25px 0 30px;

    flex-wrap:wrap;

}

.payment-logos i{

    font-size:48px;

    transition:.25s;

    cursor:default;

}

.payment-logos i:hover{

    transform:scale(1.12);

}

.paypal-logo{

    color:#0070ba;

}

.visa-logo{

    color:#1A1F71;

}

.mastercard-logo{

    color:#EB001B;

}

.debit-logo{

    color:#16a34a;

}

@media(max-width:768px){

    .payment-logos{

        gap:25px;

    }

    .payment-logos i{

        font-size:38px;

    }

}
.navbar-nav{
    align-items:center;
}

.adsense-btn{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;
    border-radius:10px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff !important;

    font-size:14px;
    font-weight:600;

    border:none;
    text-decoration:none;
    white-space:nowrap;
}

.adsense-btn:hover{
    color:#fff !important;
}
/* ==========================================
RTL Arabic Layout
========================================== */

html[dir="rtl"] body{
    direction:rtl;
    text-align:right;
}

html[dir="rtl"] .navbar-nav{
    margin-right:auto!important;
    margin-left:0!important;
}

html[dir="rtl"] .hero,
html[dir="rtl"] .section-title,
html[dir="rtl"] .order-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .pricing-card,
html[dir="rtl"] .feature-card{
    text-align:right;
}

html[dir="rtl"] .input-group{
    direction:ltr;
}

html[dir="rtl"] .input-group .form-control{
    direction:rtl;
    text-align:right;
}

html[dir="rtl"] .input-group .form-select{
    direction:rtl;
    text-align:right;
}

html[dir="rtl"] .input-group-text{
    border-radius:0 .75rem .75rem 0;
}

html[dir="rtl"] .form-control{
    text-align:right;
}

html[dir="rtl"] .form-select{
    text-align:right;
}

html[dir="rtl"] label{
    display:block;
    text-align:right;
    margin-bottom:8px;
    font-weight:600;
}

html[dir="rtl"] .price-footer{
    flex-direction:row-reverse;
}

html[dir="rtl"] .payment-content{
    flex-direction:row-reverse;
}

html[dir="rtl"] .hero-buttons{
    justify-content:flex-start;
}

html[dir="rtl"] .feature-list li{
    padding-right:35px;
    padding-left:0;
}

html[dir="rtl"] .feature-list li i{
    right:0;
    left:auto;
}

html[dir="rtl"] .accordion-button{
    text-align:right;
}

html[dir="rtl"] .accordion-button::after{
    margin-right:auto;
    margin-left:0;
}

html[dir="rtl"] .footer-links{
    padding-right:0;
}

html[dir="rtl"] .social-icons{
    justify-content:flex-start;
}

@media(max-width:992px){

html[dir="rtl"] .hero{
    text-align:center;
}

html[dir="rtl"] .hero-buttons{
    justify-content:center;
}

}
html[lang="ar"],
html[lang="ar"] body{
    font-family: "Cairo", sans-serif;
}