/* Custom CSS for Professional Services Design */

:root {
    --primary: #41c06c;
    --primary-dark: #0e943b;
    --primary-light: #34d399;
    --secondary: #0e963b;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray: #6b7280;
    --primary-extra-light: #d1fae5;
    --primary-color: #41c06c;
            --secondary-color: #3a7c5a;
            --accent-color: #f9bf3b;
            --dark-color: #1a2e35;
            --light-color: #f8f9fa;
            --text-color: #333333;
            --text-muted: #6c757d;
            --shadow: rgb(40 80 49 / 17%) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
            --shadow-hover: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            --border-radius: 12px;
            --transition: all 0.3s ease;
}

.text-primary{
    color: #059669 !important;
}

.bg-primary{
    background-color: #159143 !important;
}


/* General Styles */
.min-vh-80 {
    min-height: 80vh;
}

.min-vh-60 {
    min-height: 60vh;
}


.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay, .service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-shape-1, .service-hero-shape-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.hero-shape-2, .service-hero-shape-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card .card-header {
    height: 200px;
}

.service-image {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.8;
    z-index: 1;
}

.service-icon-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.service-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.service-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

/* Service Count Badges */
.service-count-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
}

/* Feature Tags */
.feature-tag {
    background: var(--primary-light);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

/* Service Detail Page */
.service-hero-image {
    position: relative;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-category-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Service Description */
.service-description h4 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-description ul {
    list-style-type: none;
    padding-left: 0;
}

.service-description ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-description ul li:before {
    content: "▸";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Feature Icons */
.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 0.875rem;
    color: white;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.popular-plan {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.popular-plan .text-dark {
    color: white !important;
}

.popular-plan .text-primary {
    color: white !important;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* Service Info List */
.service-info-list .text-muted {
    min-width: 100px;
}

/* Buttons */
.btn-hover-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-hover-gradient:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

/* Text Utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .service-card .card-header {
        height: 150px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 6rem 0 4rem;
            background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: 100% 100px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(16, 185, 129, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
        }
        
        .service-card-header {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .service-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-card-image {
            transform: scale(1.05);
        }
        
        .service-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.7));
        }
        
        .service-card-icon {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .service-card-category {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .service-card-title {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .service-feature {
            background: var(--primary-extra-light);
            color: var(--primary-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .service-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-price {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-dark);
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--primary-dark);
            gap: 0.8rem;
        }
        
       
        
        .btn-light {
            background: white;
            color: var(--primary-dark);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card-header {
                height: 180px;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }
        
        /* Service Detail Hero */
        .service-detail-hero {
            padding: 8rem 0 4rem;
            background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .service-detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: 100% 100px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .service-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .service-hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .service-hero-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        /* Service Detail Content */
        .service-detail-content {
            padding: 5rem 0;
        }
        
        .service-detail-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }
        
        .service-detail-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .service-detail-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .service-features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 3rem;
        }
        
        .service-features-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features-list li i {
            color: var(--primary);
            margin-right: 1rem;
            margin-top: 0.2rem;
            font-size: 1.2rem;
        }
        
        .service-pricing-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.1);
            margin-bottom: 2rem;
        }
        
        .service-price-period {
            font-size: 1rem;
            color: var(--gray);
        }

        .btn-outline-light{
            padding: 0.7rem 2.5rem;
            border-radius: 30px;
        }
        
        .service-pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .service-pricing-features li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .service-pricing-features li i {
            color: var(--primary);
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem 1rem;
        }
        
        .process-step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .process-step-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .process-step-description {
            color: var(--gray);
            line-height: 1.6;
        }
        
        
        
        .btn-light {
            background: white;
            color: var(--primary-dark);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        }
        
       
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .service-hero-title {
                font-size: 2.5rem;
            }
            
            .service-detail-title {
                font-size: 2rem;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 6rem 0 4rem;
            background: linear-gradient(135deg, #0d9668 0%, #10b981 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: 100% 100px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(16, 185, 129, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
        }
        
        .service-card-header {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .service-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-card-image {
            transform: scale(1.05);
        }
        
        .service-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.7));
        }
        
        .service-card-icon {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .service-card-category {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .service-card-title {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .service-feature {
            background: var(--primary-extra-light);
            color: var(--primary-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .service-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .service-price {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-dark);
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--primary-dark);
            gap: 0.8rem;
        }
        
       
        
        .btn-light {
            background: white;
            color: var(--primary-dark);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card-header {
                height: 180px;
            }
        }

        .navbar-transition {
            transition: all 0.3s ease;
        }
        
        .dropdown-menu-custom {
            border: none;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-radius: 1rem;
            padding: 1rem 0;
            min-width: 280px;
        }
        
        .dropdown-item-custom {
            padding: 0.75rem 1.5rem;
            transition: all 0.2s ease;
        }
        
        .dropdown-item-custom:hover {
            background-color: rgba(16, 185, 129, 0.1);
            color: #10b981;
            transform: translateX(5px);
        }
        
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            transform: scale(1.05);
        }
        
        .sidebar {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .sidebar.show {
            transform: translateX(0);
        }
        
        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .mobile-dropdown.show {
            max-height: 500px;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border: none;
        }
        
        .hover-bg-green-50:hover {
            background-color: rgba(16, 185, 129, 0.1);
        }
        
        .transition-all {
            transition: all 0.3s ease;
        }
        
        .bg-white-95 {
            background-color: rgba(255, 255, 255, 0.95);
        }
        
        /* Enhanced dropdown styling */
        .dropdown:hover .dropdown-menu-custom {
            display: block;
            margin-top: 0;
        }
        
        .service-dropdown {
            min-width: 320px;
            padding: 1.5rem 0;
        }
        
        .service-item {
            padding: 0.75rem 1.5rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .service-item:hover {
            background-color: rgba(16, 185, 129, 0.1);
            transform: translateX(5px);
        }
        
        .service-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }
        
        .service-content h6 {
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .service-content p {
            margin-bottom: 0;
            font-size: 0.8rem;
            color: #6b7280;
        }
        
        .dropdown-header {
            padding: 0 1.5rem 1rem;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 0.5rem;
        }

        .navbar .btn-closee{
            padding: 7px 9px !important;
        }
        
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0 80px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 60px;
            overflow: hidden;
            position: relative;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            margin-right: 12px;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            border: none;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .blog-card-image {
            height: 220px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-card:hover .blog-card-image {
            transform: scale(1.05);
        }
        
        .blog-card-category {
            display: inline-block;
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            background: #e0ffed;
            padding: 2px 8px;
            border-radius: 15px;
            border: 1px solid var(--primary-color);

        }
        
        .blog-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .blog-card-excerpt {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        
        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .blog-card-author {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .blog-card-date {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .blog-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .blog-link:hover {
            color: var(--secondary-color);
        }
        
        .blog-link i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .blog-link:hover i {
            transform: translateX(5px);
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-list li {
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .category-list a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .category-list a:hover {
            color: var(--primary-color);
        }
        
        .category-count {
            background: var(--light-color);
            color: var(--text-muted);
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-post-img {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .recent-post-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 5px;
        }
        
        .recent-post-content h4 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .recent-post-content h4 a:hover {
            color: var(--primary-color);
        }
        
        .recent-post-date {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .tag {
            display: inline-block;
            background: var(--light-color);
            color: var(--text-color);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .tag:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .search-form {
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 1px solid #eee;
            border-radius: 50px;
            background: var(--light-color);
            transition: var(--transition);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(78, 166, 133, 0.2);
        }
        
        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .search-btn:hover {
            background: var(--secondary-color);
        }
        
        .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        
        .page-link {
            color: var(--text-color);
            border: 1px solid #eee;
            padding: 10px 18px;
            margin: 0 5px;
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .page-link:hover {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .page-item.active .page-link {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .animate-fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .blog-card-footer a{
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 2px solid;
        }

        .blog-card-footer a:hover{
            color: var(--gray);
            text-decoration: none;
            border-bottom: 2px solid;
            padding: 0 10px;
            transition: 0.4s ease-in-out;
        }

        .blog-detail-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0 60px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 60px;
            overflow: hidden;
            position: relative;
            margin-top: 40px;
        }
        
        .blog-detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .blog-hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            margin-right: 12px;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .blog-hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .blog-hero-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .blog-hero-author {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .blog-hero-date {
            margin-right: 20px;
            margin-bottom: 10px;
        }
        
        .blog-hero-reading-time {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .blog-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            color: var(--dark-color);
        }
        
        .blog-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2.5rem 0 1.25rem;
            color: var(--dark-color);
        }
        
        .blog-content p {
            margin-bottom: 1.5rem;
        }
        
        .blog-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        
        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        
        .blog-content ul, .blog-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        .blog-content li {
            margin-bottom: 0.5rem;
        }
        
        .highlight-box {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-color);
        }
        
        .share-widget {
            display: flex;
            align-items: center;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            padding: 1.5rem 0;
            margin: 3rem 0;
        }
        
        .share-title {
            margin-right: 15px;
            font-weight: 600;
        }
        
        .share-buttons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-color);
            color: var(--text-color);
            margin-right: 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .share-buttons a:hover {
            transform: translateY(-3px);
        }
        
        .share-buttons .facebook:hover {
            background: #4267B2;
            color: white;
        }
        
        .share-buttons .twitter:hover {
            background: #1DA1F2;
            color: white;
        }
        
        .share-buttons .linkedin:hover {
            background: #0077b5;
            color: white;
        }
        
        .share-buttons .whatsapp:hover {
            background: #25D366;
            color: white;
        }
        
        .author-box {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 3rem 0;
            display: flex;
            align-items: center;
        }
        
        .author-box-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 1.5rem;
            object-fit: cover;
        }
        
        .author-box-info h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }
        
        .author-box-info p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }
        
        .comments-section {
            margin: 3rem 0;
        }
        
        .comment-form {
            background: var(--light-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-top: 2rem;
        }
        
        .related-post-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            border: none;
        }
        
        .related-post-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .related-post-image {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 10px;
        }
        
        .tag {
            display: inline-block;
            background: var(--light-color);
            color: var(--text-color);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .tag:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .animate-fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        @media (max-width: 768px) {
            .blog-hero-title {
                font-size: 2.2rem;
            }
            
            .blog-content h2 {
                font-size: 1.7rem;
            }
            
            .blog-content h3 {
                font-size: 1.3rem;
            }
        }

        .btn-outline-primary{
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline-primary:hover{
            background: var(--primary-color);
            border: 1px solid var(--primary-color);
            color: white;
        }
        

        @media screen and (max-width: 480px) {
            .fs-13{
                font-size: 13px;
            }
        }
        
         /* Ultra Modern White & Green Theme CSS - Optimized Responsive */
:root {
  --emerald-primary: #16a34a;
  --emerald-light: #dcfce7;
  --emerald-glow: #4ade80;
  --emerald-deep: #15803d;
  --pure-white: #ffffff;
  --snow-white: #fafafa;
  --cloud-white: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-800: #1e293b;
  
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 8px 25px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(22, 163, 74, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Modern White Theme */
.healthcare-specialty-location-content,
.healthcare-specialty-content,
.healthcare-content,
.web-development-content {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--slate-800);
  max-width: 1200px;
  margin: 1rem auto;
  padding: 1rem;
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

/* Animated Background Elements */
.healthcare-specialty-location-content::before,
.healthcare-specialty-content::before,
.healthcare-content::before,
.web-development-content::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, 
    rgba(22, 163, 74, 0.02) 0%, 
    rgba(220, 252, 231, 0.05) 30%, 
    transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0px, 0px); }
  50% { transform: translate(20px, -15px); }
}

/* Ultra Modern Headings */
.healthcare-specialty-location-content h1,
.healthcare-specialty-content h1,
.healthcare-content h1,
.web-development-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  color: var(--emerald-deep);
  text-align: left;
}

.healthcare-specialty-location-content h1::after,
.healthcare-specialty-content h1::after,
.healthcare-content h1::after,
.web-development-content h1::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-primary), var(--emerald-glow));
  border-radius: 2px;
}

/* Section Headers */
.healthcare-specialty-location-content h2,
.healthcare-specialty-content h2,
.healthcare-content h2,
.web-development-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  padding: 1rem 1.25rem;
  background: var(--cloud-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--emerald-primary);
  position: relative;
  z-index: 2;
  color: var(--emerald-deep);
}

/* Feature Headings */
.healthcare-specialty-location-content h3,
.healthcare-specialty-content h3,
.healthcare-content h3,
.web-development-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--emerald-deep);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.healthcare-specialty-location-content h3::before,
.healthcare-specialty-content h3::before,
.healthcare-content h3::before,
.web-development-content h3::before {
  content: '•';
  color: var(--emerald-primary);
  font-size: 1.5rem;
}

/* Paragraph Styling */
.healthcare-specialty-location-content p,
.healthcare-specialty-content p,
.healthcare-content p,
.web-development-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--slate-600);
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* Lead Paragraph */
.healthcare-specialty-location-content > p:first-of-type,
.healthcare-specialty-content > p:first-of-type,
.healthcare-content > p:first-of-type,
.web-development-content > p:first-of-type {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.25rem;
  background: var(--emerald-light);
  border-radius: var(--radius-lg);
  color: var(--emerald-deep);
  margin-bottom: 1.5rem;
}

/* List Design */
.healthcare-specialty-location-content ul,
.healthcare-specialty-content ul,
.healthcare-content ul,
.web-development-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
  position: relative;
  z-index: 2;
}

.healthcare-specialty-location-content li,
.healthcare-specialty-content li,
.healthcare-content li,
.web-development-content li {
  padding: 1rem 1rem 1rem 2.5rem;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  position: relative;
  transition: var(--transition-smooth);
  margin-bottom: 0.5rem;
  color: var(--slate-600);
          list-style: none;
}

.healthcare-specialty-location-content li:hover,
.healthcare-specialty-content li:hover,
.healthcare-content li:hover,
.web-development-content li:hover {
  border-color: var(--emerald-primary);
  background: var(--emerald-light);
}

.healthcare-specialty-location-content li::before,
.healthcare-specialty-content li::before,
.healthcare-content li::before,
.web-development-content li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--emerald-primary);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.healthcare-specialty-location-content li strong,
.healthcare-specialty-content li strong,
.healthcare-content li strong,
.web-development-content li strong {
  color: var(--emerald-deep);
  font-weight: 600;
}

/* Links */
.healthcare-specialty-location-content a,
.healthcare-specialty-content a,
.healthcare-content a,
.web-development-content a {
  color: var(--emerald-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.healthcare-specialty-location-content a:hover,
.healthcare-specialty-content a:hover,
.healthcare-content a:hover,
.web-development-content a:hover {
  color: var(--emerald-deep);
  text-decoration: underline;
}

/* Strong Text */
.healthcare-specialty-location-content p strong:first-child,
.healthcare-specialty-content p strong:first-child,
.healthcare-content p strong:first-child,
.web-development-content p strong:first-child {
  font-size: 1.125rem;
  color: var(--emerald-deep);
  margin-bottom: 1rem;
}

/* Mobile First Responsive Design */
@media (min-width: 640px) {
  .healthcare-specialty-location-content,
  .healthcare-specialty-content,
  .healthcare-content,
  .web-development-content {
    padding: 2.5rem;
    margin: 1.5rem auto;
  }
  
  .healthcare-specialty-location-content h1,
  .healthcare-specialty-content h1,
  .healthcare-content h1,
  .web-development-content h1 {
    font-size: 2.25rem;
  }
  
  .healthcare-specialty-location-content h2,
  .healthcare-specialty-content h2,
  .healthcare-content h2,
  .web-development-content h2 {
    font-size: 1.75rem;
  }
  
  .healthcare-specialty-location-content ul,
  .healthcare-specialty-content ul,
  .healthcare-content ul,
  .web-development-content ul {
    display: grid;
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .healthcare-specialty-location-content,
  .healthcare-specialty-content,
  .healthcare-content,
  .web-development-content {
    padding: 3rem;
  }
  
  .healthcare-specialty-location-content h1,
  .healthcare-specialty-content h1,
  .healthcare-content h1,
  .web-development-content h1 {
    font-size: 2.5rem;
  }
  
  .healthcare-specialty-location-content h1::after,
  .healthcare-specialty-content h1::after,
  .healthcare-content h1::after,
  .web-development-content h1::after {
    width: 80px;
  }
  
  .healthcare-specialty-location-content li,
  .healthcare-specialty-content li,
  .healthcare-content li,
  .web-development-content li {
    padding: 1.25rem 1.5rem 1.25rem 3rem;
  }
}

@media (min-width: 1024px) {
  .healthcare-specialty-location-content,
  .healthcare-specialty-content,
  .healthcare-content,
  .web-development-content {
    padding: 3.5rem;
    margin: 2rem auto;
  }
  
  .healthcare-specialty-location-content h1,
  .healthcare-specialty-content h1,
  .healthcare-content h1,
  .web-development-content h1 {
    font-size: 2.75rem;
  }
  
  .healthcare-specialty-location-content h2,
  .healthcare-specialty-content h2,
  .healthcare-content h2,
  .web-development-content h2 {
    font-size: 2rem;
    padding: 1.5rem 2rem;
  }
  
  .healthcare-specialty-location-content > p:first-of-type,
  .healthcare-specialty-content > p:first-of-type,
  .healthcare-content > p:first-of-type,
  .web-development-content > p:first-of-type {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .healthcare-specialty-location-content,
  .healthcare-specialty-content,
  .healthcare-content,
  .web-development-content {
    padding: 2rem;
  }
  
  .healthcare-specialty-location-content h1,
  .healthcare-specialty-content h1,
  .healthcare-content h1,
  .web-development-content h1 {
    font-size: 3rem;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .healthcare-specialty-location-content::before,
  .healthcare-specialty-content::before,
  .healthcare-content::before,
  .web-development-content::before {
    animation: none;
  }
  
  .healthcare-specialty-location-content,
  .healthcare-specialty-content,
  .healthcare-content,
  .web-development-content {
    transition: none;
  }
  
  .healthcare-specialty-location-content li,
  .healthcare-specialty-content li,
  .healthcare-content li,
  .web-development-content li {
    transition: none;
  }
}

@media screen and (max-width: 600px) {
  .fs-13{
    font-size: 13px;
    }
}
        
        
        /*service area pages css end */
