 :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/41687.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;
        }


        /* Service Content */
        .service-content {
            padding: 80px 0;
            background-color: white;
        }

        .service-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 100%;
        }

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

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

         .service-details {
          padding: 30px;
            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);
            height: 100%;
            transition: all 0.3s ease;
        }

        .service-details:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(65, 174, 217, 0.2);
            border-color: var(--primary-color);
        }
        .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);
        }

        .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);
        }

        /* 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 a{
        margin-top: 20px;
       }

        /* Text Justify */
        .text-justify {
            text-align: justify;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .service-hero {
                height: 45vh;
                min-height: 350px;
            }

            .service-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .service-hero {
                height: 40vh;
                min-height: 300px;
            }

            .service-hero h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .service-hero {
                height: 35vh;
                min-height: 250px;
            }

            .service-hero h1 {
                font-size: 1.8rem;
            }
        }
