/* Service Page Styles */

.service-banner {
    padding: 120px 0 80px;
    position: relative;
    color: white;
    margin-top: 80px;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 10px;
}

.service-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-banner h1 i {
    margin-right: 15px;
}

.service-banner p {
    font-size: 20px;
    opacity: 0.95;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.quick-facts {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fact-item i {
    font-size: 32px;
    color: #3b82f6;
}

.fact-item h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 5px;
}

.fact-item p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* HEALTH UMBRELLA CONTENT */

.healthUmbrella-content{
    padding:80px 0;
    background:#f8fbfd;
}

.section-title{
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    padding:8px 20px;
    background:#e7f9fd;
    color:#00a7c7;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.section-title h2{
    margin-top:20px;
    font-size:42px;
    color:#0d3b66;
    font-weight:700;
}

.section-title p{
    margin-top:18px;
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.content-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    margin-bottom:30px;
}

.content-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,180,216,.2);
}

.content-card h3{
    font-size:28px;
    color:#0d3b66;
    margin-bottom:25px;
    position:relative;
}

.content-card h3::after{
    content:"";
    width:70px;
    height:4px;
    background:#00b4d8;
    display:block;
    margin-top:10px;
    border-radius:20px;
}

.content-card p{
    color:#666;
    line-height:1.9;
    margin-top:20px;
    margin-bottom: 20px;
}

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

.service-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    line-height:1.8;
    color:#555;
    
    
}

.service-list i{
    color:#00b4d8;
    font-size:22px;
    margin-top:4px;
    flex-shrink:0;
}

.service-list b{
    color:#0d3b66;
    
}

@media(max-width:991px){

.section-title h2{
    font-size:34px;
}

.content-card{
    margin-bottom:25px;
}

}

@media(max-width:576px){

.healthUmbrella-content{
    padding:60px 0;
}

.section-title h2{
    font-size:28px;
}

.content-card{
    padding:25px;
}

.content-card h3{
    font-size:24px;
}

}








/* Service Types */
.service-types {
    padding: 80px 0;
    background: white;
}

.service-types h2 {
    text-align: center;
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 50px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.type-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.type-card.featured h3,
.type-card.featured p,
.type-card.featured li {
    color: white;
}

.type-card.featured .type-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.type-icon i {
    font-size: 32px;
    color: #3b82f6;
}

.type-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
}

.type-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #4a5568;
}

.type-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.type-card.featured ul li:before {
    color: #fbbf24;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 2px solid white;
}

.step i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: #1a202c;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #10b981;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-banner h1 {
        font-size: 32px;
    }
    
    .service-banner p {
        font-size: 16px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
