/* costant */
:root {
    --primary-color: #1c74bc;
    --secondary-color: #f8f9fa;
    --tertiary-color: #333;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.border-top{
    border-top: 1px solid var(--primary-color) !important;
}
.border-bottom{
    border-bottom: 1px solid var(--primary-color) !important;
}
body {
    font-family: 'Tajawal', sans-serif;
}

/* navbar start */
.nav-link {
    color: var(--tertiary-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
a.active{
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    border-radius: 20px;
}
/* navbar end */



/* Hero Section */
.hero-section {
    padding-top: 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.app-frame {
    max-width: 500px;
    margin: 0 auto;
}

.app-title {
    font-size: 14px;
    font-weight: 500;
}

.content-box {
    background-color: #fff;
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .app-frame {
        max-width: 400px;
    }
}
/* end hero section */

/* Video styles */
.video-container {
    overflow: hidden;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.play-btn {
    z-index: 2;
    transition: all 0.3s ease;
}

.play-icon {
    transition: all 0.3s ease;
}

/* Number boxes */
.number-box {
    width: 25%;
    transition: all 0.3s ease;
}

.number-box-right {
    border-radius: 0 80px 80px 0;
}

.number-box-left {
    border-radius: 80px 0 0 80px;
}

@media (max-width: 991.98px) {
    .number-box {
        width: 30%;
    }
}

@media (max-width: 767.98px) {
    .number-box {
        width: 80%;
        margin: 0.5rem 0;
        border-radius: 10px !important;
    }
    
    .number-box-middle {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Partner cards */
.partner-card {
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* FAQ Accordion */
.accordion-button {
    box-shadow: none !important;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.accordion-body {
    background-color: var(--secondary-color);
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
    padding: 1rem 1.5rem;
}

/* Footer styles */
footer {
    background-color: var(--secondary-color);
}

footer .btn-primary {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}
/* ==================
end index.html
================= */

.who-we-are {
    background-color: #fff;
}

.who-we-are h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

.who-we-are .stat-item {
    border-right: 3px solid #0d6efd;
    padding-right: 1rem;
}

.who-we-are .stat-number {
    font-weight: bold;
    margin-bottom: 0;
}

.who-we-are .stat-text {
    color: #666;
    font-weight: 500;
}

