 :root {
            --primary-color: #41AED9;
            --secondary-color: #41AED9;
            --accent-color: #25d366;
            --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;
        }


        .benefits-section h2 {
    margin-top: 30px; /* Adjust this value as needed */
}

        /* 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/137640.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;
        }

        /* New Improved Service Content Section */
        .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;
        }

        .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);
        }
/* Modern Details Section Styles */
.modern-details-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.modern-detail-card {
    background: white;
    border-radius: 12px;
    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: var(--transition);
}

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

.card-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(65, 174, 217, 0.05) 0%, rgba(65, 174, 217, 0.08) 100%);
    border-bottom: 1px solid rgba(65, 174, 217, 0.1);
}

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

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark-color);
}

.card-body {
    padding: 25px;
}

.card-body p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.detail-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-features li {
    padding: 8px 0;
    position: relative;
    padding-right: 25px;
}

.detail-features i {
    color: var(--secondary-color);
    margin-left: 8px;
    font-size: 0.9rem;
    position: absolute;
    right: 0;
    top: 10px;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .header-icon {
        margin: 0 auto 10px;
    }
}
                .benefits-section {
            padding: 80px 0;
            background-color: #ffffff;
            position: relative;
        }

        .benefits-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(65, 174, 217, 0.03) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(65, 174, 217, 0.02) 100%);
            z-index: 1;
        }

        .benefits-section .container {
            position: relative;
            z-index: 2;
        }

        .benefits-section h2 {
            color: #333;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .benefits-section h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #3691C4 100%);
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

            position: relative;
            overflow: hidden;
        }




        .benefit-icon {
            width: 50px;
            height: 50px;
            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: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(65, 174, 217, 0.3);
            position: relative;
        }



        .benefit-item h5 {
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .benefit-item p {
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

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

        /* 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;
            }
        }

