﻿ 
:root {
    --primary: #4285f4;
    --primary-dark: #2563c7;
    --secondary: #db4437;
    --dark: #172033;
    --text: #687080;
    --light: #f6f9ff;
    --border: #e6ebf3;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark);
    background: #fff;
}

a {
    text-decoration: none;
}

/* ==========================
           Navbar
        ========================== */

.navbar {
    padding: 17px 0;
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 25px;
    font-weight: 800;
}

.logo-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: linear-gradient( 135deg, var(--primary), #75a8ff );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.brand-blue {
    color: var(--primary);
}

.brand-red {
    color: var(--secondary);
}

.nav-link {
    color: #303746 !important;
    font-weight: 600;
    margin: 0 7px;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            right: 10px;
            left: 10px;
            bottom: -10px;
            height: 3px;
            background: var(--primary);
            border-radius: 10px;
        }

.btn-primary-custom {
    background: var(--primary);
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
}

    .btn-primary-custom:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
    }

.btn-outline-custom {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 9px 22px;
    border-radius: 10px;
    font-weight: 700;
}

    .btn-outline-custom:hover {
        background: var(--secondary);
        color: white;
    }

/* ==========================
           Page Hero
        ========================== */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient( circle at 10% 20%, rgba(66,133,244,.12), transparent 30% ), radial-gradient( circle at 90% 80%, rgba(219,68,55,.08), transparent 30% ), #f7faff;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 20px;
}

    .breadcrumb-custom a {
        color: var(--primary);
        font-weight: 700;
    }

.page-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

    .page-hero h1 span {
        color: var(--primary);
    }

.page-hero p {
    color: var(--text);
    font-size: 17px;
    line-height: 2;
    max-width: 650px;
}

.hero-decoration {
    position: relative;
    height: 300px;
}

.hero-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient( 135deg, var(--primary), #78aaff );
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .hero-circle::before {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(255,255,255,.13);
        top: -50px;
        right: -40px;
    }

.hero-main-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 105px;
}

.floating-info {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .floating-info i {
        color: var(--primary);
        font-size: 22px;
    }

.floating-one {
    top: 20px;
    right: 20px;
}

.floating-two {
    bottom: 20px;
    left: 20px;
}

/* ==========================
           General Sections
        ========================== */

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.small-title {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 9px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text);
    max-width: 650px;
    margin: auto;
    line-height: 1.9;
}

/* ==========================
           About Intro
        ========================== */

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
}

    .about-content h2 span {
        color: var(--primary);
    }

.about-content p {
    color: var(--text);
    line-height: 2;
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

    .check-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .check-list i {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eaf2ff;
        color: var(--primary);
    }

.about-visual {
    position: relative;
    min-height: 400px;
}

.about-box {
    position: absolute;
    width: 80%;
    height: 330px;
    border-radius: 30px;
    background: linear-gradient( 135deg, #4285f4, #2367d0 );
    top: 30px;
    left: 10%;
    box-shadow: 0 25px 55px rgba(66,133,244,.2);
}

.about-box-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
}

.experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 18px;
    padding: 20px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    text-align: center;
}

    .experience-card strong {
        display: block;
        font-size: 32px;
        color: var(--secondary);
        font-weight: 800;
    }

    .experience-card span {
        color: var(--text);
        font-size: 13px;
    }

/* ==========================
           Mission Vision
        ========================== */

.info-card {
    height: 100%;
    padding: 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .3s;
}

    .info-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 45px rgba(0,0,0,.07);
    }

.info-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: var(--primary);
    font-size: 29px;
    margin-bottom: 20px;
}

.info-card:nth-child(2) .info-icon {
    background: #fff0ee;
    color: var(--secondary);
}

.info-card h4 {
    font-weight: 800;
    margin-bottom: 13px;
}

.info-card p {
    color: var(--text);
    line-height: 2;
    margin: 0;
}

/* ==========================
           Values
        ========================== */

.value-card {
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 20px;
    height: 100%;
    transition: .3s;
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(66,133,244,.09);
    }

.value-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: var(--primary);
    font-size: 28px;
}

.value-card:nth-child(even) .value-icon {
    background: #fff0ee;
    color: var(--secondary);
}

.value-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ==========================
           Numbers
        ========================== */

.numbers {
    background: linear-gradient( 120deg, var(--primary), #2366cc );
    color: white;
    padding: 70px 0;
}

.number-item {
    text-align: center;
}

    .number-item i {
        font-size: 32px;
        opacity: .9;
        margin-bottom: 10px;
    }

    .number-item strong {
        display: block;
        font-size: 38px;
        font-weight: 800;
    }

    .number-item span {
        opacity: .85;
        font-size: 14px;
    }

/* ==========================
           Steps
        ========================== */

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(66,133,244,.25);
}

.step-card:nth-child(even) .step-number {
    background: var(--secondary);
    box-shadow: 0 8px 20px rgba(219,68,55,.2);
}

.step-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================
           CTA
        ========================== */

.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient( 120deg, #4285f4, #2465ca );
    border-radius: 28px;
    padding: 55px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        left: -100px;
        bottom: -180px;
    }

    .cta-box h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .cta-box p {
        opacity: .9;
        line-height: 2;
    }

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 800;
}

    .btn-white:hover {
        background: #f2f5fb;
        color: var(--primary-dark);
    }

/* ==========================
           Footer
        ========================== */

footer {
    background: #101827;
    color: white;
    padding-top: 60px;
}

.footer-brand {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}

footer p {
    color: #aeb7c7;
    line-height: 2;
}

footer h5 {
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
        color: #aeb7c7;
    }

    .footer-links a {
        color: #aeb7c7;
        transition: .2s;
    }

        .footer-links a:hover {
            color: white;
        }

.social-links {
    display: flex;
    gap: 9px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #202b3e;
        color: white;
        transition: .3s;
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.copyright {
    border-top: 1px solid #273247;
    margin-top: 45px;
    padding: 20px 0;
    color: #8792a5;
    text-align: center;
    font-size: 13px;
}

/* ==========================
           Responsive
        ========================== */

@media (max-width: 991px) {

    .nav-link.active::after {
        display: none;
    }

    .page-hero {
        padding: 60px 0;
    }

    .hero-decoration {
        margin-top: 35px;
    }

    .about-visual {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    .section {
        padding: 65px 0;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .page-hero h1 {
        font-size: 37px;
    }

    .hero-circle {
        width: 220px;
        height: 220px;
    }

    .hero-main-icon {
        font-size: 80px;
    }

    .floating-info {
        font-size: 12px;
        padding: 10px 12px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .cta-box {
        padding: 35px 25px;
        text-align: center;
    }

        .cta-box h2 {
            font-size: 27px;
        }
}

 