.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    color: #353535;
    text-transform: uppercase;
    background-size: auto;
    padding-bottom: 15px;
}


/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f9fc, #eef2f3);
    text-align: center;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    flex: 1 1 calc(30% - 20px);
    max-width: 360px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}


.service-card {
    text-align: center;
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5%;
    transition: transform 0.4s ease;
    background-color: transparent;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e3c72;
    margin: 20px 0 10px;
}

.service-text {
    font-size: 1rem;
    color: #666;
    padding: 0 15px;
    flex-grow: 1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::before {
    opacity: 1;
}

/* Button Styling */
.service-button11 {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.service-button11:hover {
    background: linear-gradient(45deg, #2a5298, #1e3c72);
}
/* Add this to the existing CSS */



/* hhm */
.hhm-section {
    background-color: #e8f5e9;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}
.hhm-section h2 {
    color: #1b5e20;
    font-size: 32px;
    margin-bottom: 20px;
}
.hhm-section p {
    color: #2e7d32;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}
.medical-section {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}
.medical-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
}
.medical-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.medical-service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.medical-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}
.medical-service-card h4 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 10px;
}
.medical-service-card p {
    color: #555;
    font-size: 16px;
}
.hhm-logo {
    width: 170px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px; /* Centers the logo and adds spacing below */
}
/* Custom CSS for Banking Services Section */
.banking-services {
    background-color: #e8f5e9;
    color: #1b5e20;
    text-align: center;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 20px auto;
}

.section-title {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    color: #353535;
    text-transform: uppercase;
    background-size: auto;
    padding-bottom: 15px;
}

.section-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 10px auto;
}

/* Banking Cards Styling */
.banking-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.banking-card i {
    margin-bottom: 10px;
}

.banking-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.banking-card p {
    font-size: 1rem;
    color: #555;
}
