   :root {
            --primary-color: #41AED9;
            --secondary-color: #41AED9;
            --accent-color: #e74c3c;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #495057;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease-in-out;
        }

        body {
             font-family: 'Cairo', sans-serif;
            color: var(--text-color);
            background-color: #f9f9f9;
            line-height: 1.6;
        }



        /* Hero Section */
        .service-hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%),
                        url('../img/images/19100.jpg') center/cover no-repeat;
            height: 50vh;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .service-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        /* Service Introduction */
        .service-intro {
            padding: 80px 0 40px;
            background-color: white;
        }

        .service-intro .lead {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content Section */
        .content-section {
            padding: 60px 0;
        }

        .content-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(65, 174, 217, 0.1);
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(65, 174, 217, 0.2);
            border-color: var(--primary-color);
        }


        .content-image {
            height: 350px;
            overflow: hidden;
        }

        .content-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .content-card:hover .content-image img {
            transform: scale(1.05);
        }

        .content-body {
            padding: 30px;
        }

        .why-choose-us {
            background-color: white;
            border-radius: 10px;
            border: 1px solid rgba(65, 174, 217, 0.1);
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .why-choose-us:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(65, 174, 217, 0.15);
            border-color: var(--primary-color);
        }

.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.bg-primary-light {
    background-color: rgba(65, 174, 217, 0.1);
}
        /* Features Section */
        .features-section {
            padding: 60px 0;
            background-color: #ffffff;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(65, 174, 217, 0.1);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(65, 174, 217, 0.2);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(65, 174, 217, 0.1) 0%, rgba(65, 174, 217, 0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary-color) 0%, #3691C4 100%);
            color: white;
            transform: scale(1.1);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: white;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #3691C4 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(65, 174, 217, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/images/maplying.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            margin-bottom: 30px;
        }
        .cta-section a{
        margin-top: 20px;
       }
