﻿     
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/headers/services.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero-section h1
        {
            color:#fff;
        }
        .service-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 20px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* Ensures cards in a row have equal height */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }
        .service-card .icon {
            font-size: 50px;
            color: #dd356e; /* Primary Bootstrap color */
            margin-bottom: 20px;
            text-align:center;
        }
        .service-card h3 {
            color: #343a40;
            margin-bottom: 15px;
            font-weight: 700;
            text-align:center; 
            min-height:55px;
        }
          .service-card h3 a{
            color: #343a40;
        }
        .service-card p {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.6;
            flex-grow: 1;
            text-align:justify;
            min-height:80px;
        }
        .btn-primary-custom {
            background-color: #dd356e;
            border-color: #dd356e;
            color:#fff;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
           .btn-second-custom {
            background-color: #fff;
            border-color: #fff;
            color:#333;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #333;
            border-color: #333;
            color:#fff;
        }
                .btn-second-custom:hover {
            background-color: #333;
            border-color: #333;
            color:#fff;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title h2 {
            font-weight: 700;
            color: #343a40;
            font-size: 40px;
            display: inline-block;
            position: relative;
            padding-bottom: 30px;
            margin-top: 30px;
            
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #dd356e;
            border-radius: 5px;
        }
     
        /* Accessibility and SEO enhancements */
        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }
        
        strong, b {
    color: #dd356e;
    font-weight: bold;
}
.feature-list{ list-style:none;padding: 0px;}
#service-details{ margin-bottom:60px;}