:root {
    --primary-color: #27ae60;
    --secondary-color: #2ecc71;
    --btn-primary-bg: #f9a03b;
    --btn-primary: #333;
    --btn-dark-shade-color:#292f38;
    --dark-color: #333;
    --light-color: #f4f4f4;
}

body {
    font-family: 'Tajawal', sans-serif;
}

/* Header Section */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand img {
    height: 40px;
}

/* RTL */
[dir="rtl"] .navbar-brand img {
    margin-left: 10px;
    margin-right: 0;
}

/* LTR */
[dir="ltr"] .navbar-brand img {
    margin-right: 10px;
    margin-left: 0;
}

.navbar-brand span{
    font-size: 1.5rem;
    font-weight: 700;
    color: #28b381;
}

.navbar .nav-link {
    color: #333;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .btn-contact {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 76px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #28b381;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #28b381;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    border-color: var(--btn-primary-bg);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.feature-box {
    cursor: pointer;
    text-align: center;
    padding: 40px 25px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 50px;
    height: 93%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.counter-box {
    text-align: center;
    margin-top: 30px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* RTL */
[dir="rtl"] .contact-info-icon {
    margin-left: 15px;
    margin-right: 0;
}

/* LTR */
[dir="ltr"] .contact-info-icon {
    margin-left: 0;
    margin-right: 15px;
}

.contact-info-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form .form-control {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* RTL */
[dir="rtl"] .footer-links h3:after {
    right: 0;
    left: auto;
}

/* LTR */
[dir="ltr"] .footer-links h3:after {
    right: auto;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* RTL */
[dir="rtl"] .footer-links ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
    padding-left: 0;
}

/* LTR */
[dir="ltr"] .footer-links ul li a:hover {
    color: var(--primary-color);
    padding-right: 0;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

/* RTL */
[dir="rtl"] .social-links a {
    margin-left: 10px;
    margin-right: 0;
}

/* LTR */
[dir="ltr"] .social-links a {
    margin-left: 0;
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.solution-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: #fff;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: #388E3C;
}

.solution-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.solution-card p {
    color: #666;
    margin-bottom: 20px;
}

.solution-card .btn-outline-primary {
    color: #4CAF50;
    border-color: #4CAF50;
}

.solution-card .btn-outline-primary:hover {
    background-color: #4CAF50;
    color: #fff;
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .feature-box, .service-card, .solution-card {
        margin-bottom: 30px;
    }
    
    .counter-box {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

/* Responsive Design for Medium Screens */
@media (min-width: 769px) and (max-width: 992px) {
    .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Responsive Design for Large Screens */
@media (min-width: 993px) {
    .col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}