/* Hero Section - Matching About Page Style */
        .services-hero {
            background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
                radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .services-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
                radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent),
                radial-gradient(1px 1px at 25% 80%, rgba(13, 159, 232, 0.06), transparent),
                radial-gradient(1px 1px at 70% 70%, rgba(237, 131, 33, 0.1), transparent);
            background-size: 400px 300px;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            50% { transform: translateX(5px) translateY(-10px); }
            75% { transform: translateX(-5px) translateY(5px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 24px;
            font-size: 16px;
            font-weight: 500;
            color: var(--dark-text-secondary);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--dark-text-primary);
            line-height: 1.1;
            margin-bottom: 24px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-highlight {
            font-weight: 500;
            background: linear-gradient(135deg, #0d9fe8 0%, #ed8321 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: var(--dark-text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Overview - Light Section */
        .services-overview {
            padding: 100px 0;
            background: #ffffff;
        }

        .overview-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .overview-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .overview-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid #f1f3f4;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: rgba(13, 159, 232, 0.2);
        }

        .service-card .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--blue-card-icon) 0%, var(--orange-card-icon) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin: 0 auto 24px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 20px;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .service-description {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .service-features li {
            font-size: 15.5px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .service-features i {
            color: var(--brand-orange-text);
            font-size: 12px;
            display: none;
        }

        .service-cta {
            color: var(--brand-blue-text);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-cta:hover {
            color: var(--brand-orange-text);
            text-decoration: none;
        }

        .service-cta i {
            transition: transform 0.3s ease;
        }

        .service-cta:hover i {
            transform: translateX(4px);
        }

        /* Detailed Services Section - Dark Background */
        .detailed-services {
            background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
                radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .detailed-services::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
                radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent),
                radial-gradient(1px 1px at 25% 80%, rgba(13, 159, 232, 0.06), transparent),
                radial-gradient(1px 1px at 70% 70%, rgba(237, 131, 33, 0.1), transparent);
            background-size: 400px 300px;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 400;
            color: var(--dark-text-primary);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--dark-text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .detailed-grid {
            display: grid;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .service-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .service-detail:nth-child(even) {
            direction: rtl;
        }

        .service-detail:nth-child(even) > * {
            direction: ltr;
        }

        .service-content {
            padding: 40px 0;
        }

        .service-content .service-icon {
            margin: 0 0 24px 0;
        }

        .service-content .service-title {
            font-size: 2.5rem;
            color: var(--dark-text-primary);
            margin-bottom: 20px;
        }

        .service-content .service-description {
            font-size: 17px;
            color: var(--dark-text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .detailed-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .detailed-features li {
            font-size: 17px;
            color: var(--dark-text-secondary);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
			text-align:left;
        }

        .detailed-features i {
            color: var(--brand-orange-text);
            font-size: 16px;
        }

        .service-visual {
            position: relative;
            min-height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-size: cover;
            background-position: center;
        }

        .visual-placeholder {
            font-size: 6rem;
            opacity: 0;
            color: var(--dark-text-primary);
        }

        .service-cta-detailed {
            background: var(--brand-orange-text);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .service-cta-detailed:hover {
            background: var(--brand-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Process Section - Light Background */
        .process-section {
            background: radial-gradient(ellipse at top left, rgba(13, 143, 208, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at top right, rgba(217, 111, 13, 0.04) 0%, transparent 50%),
                #f8f9fa;
            padding: 100px 0;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(135deg, var(--blue-card-icon) 0%, var(--orange-card-icon) 100%);
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--blue-card-icon) 0%, var(--orange-card-icon) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
            margin: 0 auto 24px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
/*             padding: 100px 0; */
			padding: 50px 0 120px;
            background: #ffffff;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .cta-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--brand-orange-text);
            color: white;
            border: none;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #e8640f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 116, 22, 0.3);
            text-decoration: none;
            color: white;
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--text-primary) !important;
            border: 2px solid #e9ecef;
        }

        .cta-button-secondary:hover {
            border-color: var(--text-primary);
            background: transparent;
            color: var(--text-primary);
            box-shadow: none;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .service-detail {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .service-detail:nth-child(even) {
                direction: ltr;
            }

            .service-visual {
                min-height: 300px;
                order: -1;
            }

            .service-content .service-icon {
                margin: 0 auto 24px;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step::after {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }

            .services-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }

            .service-content .service-title {
                font-size: 1.5rem;
            }

            .section-title,
            .overview-title,
            .cta-title {
                font-size: 2rem;
            }

            .services-overview,
            .detailed-services,
            .process-section,
            .cta-section {
/*                 padding: 64px 0; */
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button,
            .cta-button-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

  .services-overview .service-card {
    width: auto;
    min-width: auto;
	  height:auto;
  }
.services-overview .service-features{
	margin-left:0;
}
.services-overview .service-cta{
	display:block;
}

#service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

#service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#service-icon {
    overflow: hidden;
    border-radius: 12px;
}

#service-icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

#service-card:hover .service-icon img {
    transform: scale(1.05);
}

#service-card #service-icon {
  width: 130px;
	height: 130px;
}

#service-title{
	  font-weight: bold;
}