/* SERVICES SECTION */
        :root {
            --primary-blue: #2563eb;
            --hover-blue: #1d4ed8;
            --accent-blue: #3b82f6;
            --deep-purple: #7c3aed;
            --dark-bg: #0f172a;
            --light-text: #f8fafc;
            --card-bg: #ffffff;
            --card-shadow: rgba(0, 0, 0, 0.1);
            --section-bg: #f8f9fa;
            --gradient-start: #2563eb;
            --gradient-end: #7c3aed;
        }
        
        .services-section {
            background: linear-gradient(to bottom, #f9fbfd, #eef2ff);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .services-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--accent-blue), var(--deep-purple));
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
        }
        
        .section-header {
            position: relative;
            z-index: 1;
            margin-bottom: 3rem;
        }
        
        .section-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .section-header p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            color: #4b5563;
            line-height: 1.6;
        }
        
        .services-container {
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
            z-index: 1;
            border: none;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
        }
        
        .service-icon-container {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
            position: relative;
            overflow: hidden;
        }
        
        .service-icon-container::before {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
            z-index: 0;
            animation: rotate 15s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
            border-radius: 50%;
            color: white;
            font-size: 2.5rem;
            z-index: 1;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        }
        
        .card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-bg);
            text-align: center;
        }
        
        .card-content p {
            color: #4b5563;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            text-align: center;
            flex-grow: 1;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            text-align: left;
        }
        
        .service-features li {
            padding: 0.5rem 0;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.75rem;
            color: #4b5563;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-blue);
        }
        
        .btn-custom-service {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
            color: white;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-decoration: none;
            border-radius: 10px;
            border: none;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
            z-index: 1;
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }
        
        .btn-custom-service:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }
        
        .btn-custom-service:active {
            transform: translateY(1px);
        }
        
        .btn-custom-service i {
            margin-right: 10px;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }
        
        .btn-custom-service:hover i {
            transform: translateX(5px);
        }
        
        .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-purple));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }
        
        @media (max-width: 992px) {
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 1.8rem;
            }
            
            .service-icon-container {
                height: 160px;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        /*SERVICES SECTION*/