   /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 10px;
            /* margin-top: 50px; */
        }

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #010101;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* height: 100%; */
    /* justify-content: space-between; */
}


        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-red-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--primary-red);
        }

        .service-card:hover .service-icon i {
            color: var(--white);
        }

        .service-icon i {
       font-size: 2.1rem;
    color: var(--primary-red);
    transition: color 0.3s;
        }

 .service-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    /* min-height: 60px; */
}

.service-card p {
    color: var(--text-light);
}

        .service-features {
            list-style: none;
            text-align: left;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .service-features li {
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .service-features i {
            color: var(--primary-red);
            margin-right: 10px;
        }

        .read-more {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .read-more i {
            font-size: 0.9rem;
        }

        .service-card:hover .read-more {
            gap: 10px;
        }

        /* Service Modal */
        .service-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
        }

        .service-modal.active {
            display: block;
        }

        .modal-content {
            background: var(--white);
            max-width: 1000px;
            margin: 50px auto;
            border-radius: 8px;
            position: relative;
            animation: modalSlideIn 0.3s;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 2rem;
            color: var(--black);
            cursor: pointer;
            width: 40px;
            height: 40px;
            background: var(--gray-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--primary-red);
            color: var(--white);
        }

        .modal-header {
            padding: 40px 40px 10px;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-header h2 {
            font-size: 2.5rem;
            color: var(--black);
            margin-bottom: 10px;
        }

        .modal-header h2:after {
            display: none;
        }

        .modal-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .modal-body {
            padding: 40px;
        }

        .modal-section {
            margin-bottom: 40px;
        }

        .modal-section h3 {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .modal-section h4 {
            font-size: 1.2rem;
            color: var(--black);
            margin: 10px 0 10px;
        }

        .modal-section p {
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .modal-section ul {
            list-style: none;
        }

        .modal-section ul li {
            margin-bottom: 12px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-section ul li i {
            color: var(--primary-red);
            width: 10px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .info-card {
            background: var(--gray-bg);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .info-card h4 {
            margin-bottom: 10px;
        }

        .info-card p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        .modal-footer {
            padding: 10px 40px 40px;
            border-top: 1px solid var(--border-color);
            display: flex;
            gap: 10px;
            justify-content: center;
        }
