/* 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;
}

.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;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.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.55rem 1.5rem !important;
            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%, #41c06c 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.55rem 1.5rem !important;
            border-radius: 30px;
            margin-bottom: 15px;
        }
        
        .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;
            margin-bottom: 15px;
        }
        
        .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;
        }
        
        
        /*service area pages css start ------------------------------------------------------------------- */ 
        
        /* 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;
  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;
  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: 1.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: 1.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: 2rem;
  }
  
  .healthcare-specialty-location-content h2,
  .healthcare-specialty-content h2,
  .healthcare-content h2,
  .web-development-content h2 {
    font-size: 1.3rem;
    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: 12px 24px;
    font-size: 1rem;
  }
}

@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: 2rem;
  }
}

/* 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 */