/* Google Fonts - Cairo */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #FE8400;
    --primary-color-rgb: 254, 132, 0;
    --secondary-color: #263238;
    --font-cairo: 'Cairo', sans-serif;
    --body-bg: #f9f9f9;
}

body {
    font-family: var(--font-cairo) !important;
    direction: rtl;
    text-align: right;
    background-color: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle,
.text,
p,
a,
span,
button,
input {
    font-family: var(--font-cairo) !important;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d66b00;
}

/* Banner / Hero Section */
.banner-section {
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.banner-content .title {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.banner-content .text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Primary Color Overrides */
.text--base,
.base--color {
    color: var(--primary-color) !important;
}

.bg--base,
.base--bg {
    background-color: var(--primary-color) !important;
}

.cmn--btn {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.cmn--btn:hover {
    background: #d66b00 !important;
    border-color: #d66b00 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 132, 0, 0.3);
}

/* Features */
.learn-feature-section {
    background-color: #fff !important;
}

.learn-feature-item {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.learn-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.learn-feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 132, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Module Cards */
.venture-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Owl Dots - Carousel Control */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
}

/* Footer (Example of dark mode footer) */
footer {
    background: #1a1a1a;
}

/* SVG Fill Helpers */
.fill-primary {
    fill: var(--primary-color) !important;
}

.fill-orange {
    fill: #FE8400 !important;
}

/* RTL Helpers */
.ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.ps-xl-5 {
    padding-right: 3rem !important;
    padding-left: 0 !important;
}

/* Odometer / Counter */
.odometer-inside .odometer-digit {
    background: transparent !important;
}