
.services-header {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(125deg, rgba(11,16,32,0.95) 0%, rgba(37,99,235,0.4) 50%, rgba(255,58,166,0.4) 100%);
    overflow: hidden;
    text-align: center;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.header-tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.tech-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-cyan);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.tech-icon:nth-child(2) {
    color: var(--brand-pink);
    animation-delay: 1s;
}

.tech-icon:nth-child(3) {
    color: var(--accent-blue);
    animation-delay: 2s;
}

.tech-icon:nth-child(4) {
    color: var(--accent-purple);
    animation-delay: 3s;
}

.tech-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    opacity: 0.1;
    animation: floatShape 25s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 75%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 15s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 80%;
    animation-delay: -15s;
    animation-duration: 30s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
        border-radius: 50%;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        transform: translateY(0) translateX(20px) rotate(180deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        border-radius: 50%;
    }
}

/* Services Overview */
.services-overview {
    background: var(--bg-deep);
}

.service-overview-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-overview-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    transform: translateY(-10px);
}

.service-overview-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-overview-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-overview-card:hover .tech-tag {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    color: #fff;
}

/* Service Category Sections */
.service-category {
    position: relative;
}

.bg-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.category-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.service-detail-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,212,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-detail-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,.3);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-header .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-header .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.service-detail-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.service-features li i {
    color: var(--brand-cyan);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.technology-stack {
    position: relative;
    z-index: 1;
}

.technology-stack h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-card:hover .tech-badge {
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    color: #fff;
    border-color: transparent;
}

/* CTA Section */
.cta-section{
    background: radial-gradient(120% 120% at 50% 0%, rgba(0,212,255,.1) 0, rgba(255,58,166,.1) 40%, transparent 70%), #0f172a;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.cta-title{
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text{
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-pill{
    border-radius: 999px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary{
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-pink));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover{
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.btn-outline-light{
    border-color: rgba(255,255,255,.4);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover{
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255,255,255,.8);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .main-title {
        font-size: 3rem;
    }

    .header-tech-icons {
        gap: 1.5rem;
    }

    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .category-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .services-header {
        padding: 120px 0 60px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .header-tech-icons {
        gap: 1rem;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-overview-card, .service-detail-card {
        padding: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-header .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.2rem;
    }

    .header-tech-icons {
        gap: 0.8rem;
    }

    .tech-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .tech-badges {
        justify-content: center;
    }
}
/* Service Category Styles */
.service-category {
    position: relative;
}

.bg-light {
    background: linear-gradient(135deg, #0f1a2f 0%, #1a253c 100%);
}

.category-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0.6s ease;
}

.service-detail-card:hover::before {
    left: 100%;
}

.service-detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-header h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.service-detail-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-features i {
    color: var(--brand-cyan);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.technology-stack h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--brand-cyan);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tech-badges {
        justify-content: center;
    }
}
/* Modern Service Sections */
.modern-services {
    position: relative;
}

.service-category-modern {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-category-modern:not(.dark) {
    background: linear-gradient(135deg, #0f172a 0%, #1a253c 100%);
}

.service-category-modern.dark {
    background: linear-gradient(135deg, #0a0f1a 0%, #151a2d 100%);
}

.service-category-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 58, 166, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.service-category-modern .container {
    position: relative;
    z-index: 1;
}

/* Category Header */
.category-header {
    margin-bottom: 4rem;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.category-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Service Card */
.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.service-card-modern:hover::before {
    left: 100%;
}

.service-card-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(0, 212, 255, 0.1);
}

/* Service Visual */
.service-visual {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-glow {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--brand-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: floatElement 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 0.6;
    }
}

.service-card-modern:hover .floating-element {
    animation-duration: 3s;
}

/* Service Content */
.service-content h3 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    color: var(--brand-cyan);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .highlight {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Tech Stack */
.tech-stack h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card-modern:hover .tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Modern CTA */
.modern-cta {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-pink) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-title {
        font-size: 2.5rem;
    }

    .service-card-modern {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

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

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-category-modern {
        padding: 60px 0;
    }

    .category-title {
        font-size: 2rem;
    }

    .service-card-modern {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation on scroll */
.service-card-modern {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card-modern.animate {
    opacity: 1;
    transform: translateY(0);
}