﻿/* =====================================================
   PATHOMARK HOME PAGE – CUSTOM STYLES
   Compatible with MediTrust Template
===================================================== */

:root {
    --pm-blue: #0b5ed7;
    --pm-dark-blue: #084298;
    --pm-orange: #f59e0b;
    --pm-bg-light: #f8fbff;
    --pm-text-dark: #0f172a;
}

hr {
    margin:0!important
}
/* =====================================================
   HERO CAROUSEL
===================================================== */
/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* Background image with blur */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/bg-home.jpg') center / cover no-repeat;
    filter: blur(6px);
    transform: scale(1.1); /* prevents blur edges */
    z-index: 1;
}

/* Dark overlay like Aavika */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* Swiper container */
.heroTextSwiper {
    position: relative;
    z-index: 3;
    height: 100%;
}

    /* Slides center content */
    .heroTextSwiper .swiper-slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Text block */
.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    font-size: 28px;
}

    /* Heading */
    .hero-text h1 {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2;
    }

/* Highlight color */
.highlight {
    color: #2dd4bf;
}

/* Paragraph */
.hero-text p {
    font-size: 22px;
    margin: 20px 0 30px;
    opacity: 0.9;
}

/* Button */
.btn-primary-pill {
    background: linear-gradient(135deg, #ff9f1c, #ff7a00);
    color: #fff;
    padding: 14px 34px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
    transition: all 0.3s ease;
}

    .btn-primary-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(255, 122, 0, 0.45);
        color: #fff;
    }

/* Secondary Button (Blue) */
.btn-secondary-pill {
    background: linear-gradient(135deg, #2ec4b6, #1aa7ec);
    color: #fff;
    padding: 14px 34px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(26, 167, 236, 0.35);
    transition: all 0.3s ease;
}

    .btn-secondary-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(26, 167, 236, 0.45);
        color: #fff;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
}
/* =====================================================
   SECTION GLOBAL
===================================================== */

.section {
    padding: 70px 0;
}

    .section.bg-light {
        background: var(--pm-bg-light);
    }

.section-title {
    margin-bottom: 15px;
}

    .section-title h2 {
        font-size: 34px;
        font-weight: 700;
        color: var(--pm-text-dark);
    }

    .section-title p {
        color: #64748b;
        margin-top: 10px;
    }

/* =====================================================
   ABOUT US
===================================================== */

.about-home h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-home p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* =====================================================
   PACKAGE OFFERS (IMAGE ONLY)
===================================================== */

.package-offers img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

    .package-offers img:hover {
        transform: translateY(-6px);
    }

/* =====================================================
   WHY CHOOSE PATHOMARK
===================================================== */

.why-choose {
    background: #ffffff;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
    }

    .why-card i {
        font-size: 40px;
        color: var(--pm-blue);
        margin-bottom: 15px;
    }

    .why-card h5 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 14px;
        color: #64748b;
    }

/* =====================================================
   SERVICES ICON GRID
===================================================== */

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.service-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

    .service-icon i {
        font-size: 36px;
        margin-bottom: 10px;
    }

.service-blue {
    background: #3b82f6;
}

.service-teal {
    background: #06b6d4;
}

.service-orange {
    background: #f59e0b;
}

.service-red {
    background: #ef4444;
}

/* =====================================================
   BUTTON OVERRIDES
===================================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--pm-blue), var(--pm-dark-blue));
    border: none;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

/* =====================================================
   UTILITIES
===================================================== */

.shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.rounded {
    border-radius: 18px !important;
}

.why-choose-section {
    background: #f8fbff;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #f49a10;
    text-transform: uppercase;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #0079a8;
}

.about-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

    .feature-card:hover {
        box-shadow: 0 30px 60px rgba(10, 162, 192, 0.18), 0 0 0 1px rgba(10, 162, 192, 0.15);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.04);
    transform: scale(1.08);
}

    .feature-icon.blue {
        background: #3b82f6;
    }

    .feature-icon.green {
        background: #22c55e;
    }

    .feature-icon.orange {
        background: #f97316;
    }

    .feature-icon.teal {
        background: #14b8a6;
    }

    .feature-icon.purple {
        background: #8b5cf6;
    }

.feature-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.why-choose-section {
    border-bottom: 1px solid rgba(0,0,0,0.04);
}


/* ==============================
   ENHANCED BACKGROUND
================================*/
.enhanced-bg {
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #f9fcff 100%);
    overflow: hidden;
}

    /* Decorative floating blobs */
    .enhanced-bg::before,
    .enhanced-bg::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.35;
        z-index: 0;
    }

    .enhanced-bg::before {
        background: #0aa2c0; /* teal from logo */
        top: -120px;
        left: -120px;
    }

    .enhanced-bg::after {
        background: linear-gradient(135deg, #0aa2c0, #1e5eff);
        bottom: -140px;
        right: -120px;
    }

/* Keep content above background */
.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.health-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding-top: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .health-card:hover {
        transform: translateY(-6px);
    }

    .health-card.active {
        /*border: 2px solid #0d6efd;*/
    }

/* Illustration Icon */
.package-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 150px;
    height: auto;
    opacity: 0.9;
}

/* Header */
.health-card-header {
    padding: 22px;
}

    .health-card-header h5 {
        font-weight: 700;
        color: #0b2c4d;
        margin-bottom: 4px;
    }

    .health-card-header span {
        font-size: 14px;
        color: #666;
    }

/* Body */
.health-card-body {
    padding: 0 22px 22px;
}

.price-box .mrp {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.price-box .offer {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ff8c00;
    margin-top: 2px;
}

/* Doctor review */
.badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0;
    font-size: 14px;
    color: #fff;
    background-color: #2072a1;
    padding:10px;

}

.check-icon {
    width: 20px;
    height: 20px;
    background: #f7d58d;
    color: #000;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-btn {
    background: #ff9f1c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

    .book-btn:hover {
        background: #ff7a00;
    }


.our-services-section {
    position: relative;
    background: linear-gradient(135deg, #f1fbfd, #ffffff);
    overflow: hidden;
}

    /* soft abstract background circles */
    .our-services-section::before,
    .our-services-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(27, 191, 180, 0.08);
        z-index: 0;
    }

    .our-services-section::before {
        width: 320px;
        height: 320px;
        top: -120px;
        left: -120px;
    }

    .our-services-section::after {
        width: 260px;
        height: 260px;
        bottom: -100px;
        right: -100px;
    }

/* Headings */
.section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1bbfb4;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a4e77;
    margin-top: 10px;
}



/* Service Card */
.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    z-index: 1;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1bbfb4, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
}

/* Title */
.service-card h6 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0b2c3d;
}


.services-premium {
    position: relative;
    background: linear-gradient(135deg, #eaf9fc, #ffffff);
    overflow: hidden;
}

    /* floating medical blobs */
    .services-premium::before,
    .services-premium::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(27, 191, 180, 0.12);
        filter: blur(60px);
        z-index: 0;
    }

    .services-premium::before {
        width: 400px;
        height: 400px;
        top: -150px;
        left: -150px;
    }

    .services-premium::after {
        width: 350px;
        height: 350px;
        bottom: -120px;
        right: -120px;
    }

/* headings */
.services-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(27,191,180,.15);
    color: #f49a10;
    font-weight: 600;
    font-size: 13px;
}

.services-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a4e77;
    margin-top: 12px;
}

.services-subtitle {
    max-width: 620px;
    margin: 10px auto 0;
    color: #6c7a89;
}

/* glass card */
.service-glass {
    height: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all .4s ease;
    position: relative;
    z-index: 1;
}

    .service-glass:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    }

/* icon wrapper */
.icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

/* color variants */
.teal {
    background: linear-gradient(135deg, #1bbfb4, #13a89e);
}

.blue {
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.green {
    background: linear-gradient(135deg, #20c997, #198754);
}

.purple {
    background: linear-gradient(135deg, #6f42c1, #4b2c82);
}

.orange {
    background: linear-gradient(135deg, #fd7e14, #d9480f);
}

.cyan {
    background: linear-gradient(135deg, #0dcaf0, #087990);
}

.red {
    background: linear-gradient(135deg, #dc3545, #a71d2a);
}

.navy {
    background: linear-gradient(135deg, #0b2c3d, #051821);
}

/* text */
.service-glass h6 {
    font-size: 17px;
    font-weight: 700;
    color: #0b2c3d;
}

.service-glass p {
    font-size: 14px;
    color: #6c7a89;
    margin: 0;
}
.testimonials-section {
    background: linear-gradient(135deg, #f6fbff, #ffffff);
    position: relative;
}

/* Heading */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(27,191,180,.15);
    color: #1bbfb4;
    font-weight: 600;
    border-radius: 30px;
    font-size: 13px;
}





.testimonial-section {
    background: linear-gradient(135deg, #f6fbff, #ffffff);
}





.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
    
}

    .testimonial-card p {
        color: #555;
        font-size: 15px;
        margin: 18px 0;
    }

    .testimonial-card h6 {
        font-weight: 700;
        color: #0b2c3d;
        margin-bottom: 2px;
    }

    .testimonial-card span {
        font-size: 13px;
        color: #888;
    }

.stars {
    font-size: 20px;
    color: #ffc107;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}



.page-header {
    background: linear-gradient(135deg, #1bbfb4, #0d6efd);
    color: #fff;
    padding: 190px 0px 100px
}

    .page-header h1 {
        font-weight: 800;
    }

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav span {
    margin: 0 6px;
    opacity: 0.8;
}

.section-title {
    
    
}


.about-main-icon {
    font-size: 160px;
    color: rgba(13,110,253,0.15);
}

.info-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

    .info-icon.teal {
        background: #1bbfb4;
    }

    .info-icon.blue {
        background: #0d6efd;
    }

.expertise-list {
    padding-left: 18px;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f9f7, #f4fbff);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

    .highlight-box i {
        font-size: 40px;
        color: #1bbfb4;
    }

.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

    .why-card i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 10px;
    }

.commitment-box i {
    font-size: 36px;
    color: #1bbfb4;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fbff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: 0.3s ease;
}

    .expertise-item i {
        font-size: 20px;
        color: #0d6efd;
    }

    .expertise-item:hover {
        background: #eaf2ff;
        transform: translateX(4px);
    }

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== TEST CARD ===== */
.test-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .test-card h6 {
        font-weight: 600;
        margin-bottom: 12px;
    }

.test-price {
    font-size: 22px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 16px;
}

.test-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.book-btn-sm {
    background: #ff9800;
    color: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
}

.test-card:hover {
    transform: translateY(-6px);
}

/* ===== PAGINATION (UI ONLY) ===== */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

    .custom-pagination li {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-weight: 500;
    }

        .custom-pagination li.active {
            background: #2072a1;
            color: #fff;
            border-color: #2072a1;
        }

        .custom-pagination li.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
/* ===== TOGGLE WRAPPER ===== */
.filter-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
    margin-bottom: 30px;
}

/* Labels */
.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

    .toggle-label.active {
        color: #0d6efd;
    }

/* ===== SWITCH ===== */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* Slider */
.slider {
    position: absolute;
    cursor: not-allowed;
    inset: 0;
    background-color: #dee2e6;
    transition: 0.3s;
    border-radius: 30px;
}

    .slider::before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 3px;
        top: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

/* Checked look (static demo) */
.switch input:checked + .slider {
    background-color: #0d6efd;
}

    .switch input:checked + .slider::before {
        transform: translateX(22px);
    }

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

/* ===== SEARCH BOX ===== */
.search-box {
    position: relative;
    flex: 1;
    min-width: 260px;
}

    .search-box i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #6c757d;
    }

    .search-box input {
        padding-left: 40px;
        height: 46px;
        border-radius: 30px;
        border: 1px solid #dee2e6;
        font-size: 14px;
    }

/* ===== SELECT FILTER ===== */
.filter-select {
    min-width: 200px;
}

    .filter-select select {
        height: 46px;
        border-radius: 30px;
        font-size: 14px;
    }

/* ===== TOGGLE ===== */
.filter-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

    .toggle-label.active {
        color: #0d6efd;
    }

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .switch input {
        opacity: 0;
    }

.slider {
    position: absolute;
    inset: 0;
    background-color: #dee2e6;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

    .slider::before {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        left: 3px;
        top: 3px;
        background-color: #fff;
        border-radius: 50%;
        transition: 0.3s;
    }

.switch input:checked + .slider {
    background-color: #0d6efd;
}

    .switch input:checked + .slider::before {
        transform: translateX(22px);
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-toggle-wrapper {
        justify-content: center;
    }
}



/* CONTACT CARDS */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

    .contact-card i {
        font-size: 36px;
        color: #0bb7a7;
        margin-bottom: 15px;
    }

    .contact-card.highlight {
        background: linear-gradient(135deg, #0bb7a7, #0aa39a);
        color: #fff;
    }

        .contact-card.highlight i {
            color: #fff;
        }

/* FORM */
.enquiry-form .form-control {
    border-radius: 12px;
    padding: 12px 15px;
}

.btn-primary-pill {
    background: #0bb7a7;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
}

    .btn-primary-pill:hover {
        background: #099c90;
    }

/* RIGHT SIDE */
.contact-illustration {
    background: #f6fbfb;
    padding: 50px;
    border-radius: 20px;
}

    .contact-illustration i {
        font-size: 60px;
        color: #0bb7a7;
    }

/* ===== CONTACT INFO MODERN ===== */
.contact-info-modern {
    background: linear-gradient(180deg, #f8fcff, #ffffff);
}

/* Glass Card */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

    .contact-glass-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 22px;
        padding: 1px;
        background: linear-gradient(135deg, #e0f2ff, #eafff6);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .contact-glass-card:hover {
        transform: translateY(-10px);
    }

    /* Highlight center card */
    .contact-glass-card.active {
        transform: translateY(-14px);
    }

/* Icon Wrapper */
.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-wrap i {
        font-size: 28px;
        color: #fff;
    }

/* Gradients */
.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.gradient-green {
    background: linear-gradient(135deg, #0bb7a7, #10b981);
}

.gradient-orange {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

/* Text */
.contact-glass-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-glass-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.phone-text a {
    font-size: 20px;
    font-weight: 700;
    color: #0bb7a7;
    text-decoration: none;
}

/* 24x7 Badge */
.badge-24 {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-size: 12px;
    font-weight: 600;
}


.service-tag {
    background: #dff5f2;
    color: #0bb7a7;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.service-hero-icon {
    font-size: 130px;
    color: #0bb7a7;
    opacity: .18;
}

.service-section {
    padding: 80px 0;
}

.bg-soft {
    background: #f8fdfc;
}

.bg-gradient {
    background: linear-gradient(135deg,#0bb7a7,#0fa5a0);
    color: #fff;
}

.highlight-card,
.info-card,
.test-card,
.why-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .test-card i,
    .info-card i,
    .why-card i {
        font-size: 30px;
       /* color: #0bb7a7;*/
        margin-bottom: 12px;
    }

.home-icon {
    font-size: 120px;
    opacity: .9;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

    .service-list li {
        margin-bottom: 10px;
        font-weight: 500;
    }

.commitment-icon {
    font-size: 50px;
    color: #0bb7a7;
    margin-bottom: 20px;
}

.process-card {
    padding: 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

    .process-card i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 14px;
    }
/* ================================
   FOOTER
================================ */
.site-footer {
    background: linear-gradient(180deg, #0c1f2e, #081621);
    color: #cfd8dc;
    padding: 70px 0 25px;
    font-size: 14px;
}

.footer-brand img {
    height: 105px;
    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.7;
    color: #b8c4cc;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    position: relative;
}

    .footer-title::after {
        content: "";
        width: 35px;
        height: 2px;
        background: #1da1f2;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #b8c4cc;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: #1da1f2;
            padding-left: 4px;
        }

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b8c4cc;
}

.footer-contact i {
    color: #1da1f2;
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: #b8c4cc;
    text-decoration: none;
}

    .footer-contact a:hover {
        color: #1da1f2;
    }

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 35px;
    padding-top: 18px;
    font-size: 13px;
}

.footer-social a {
    color: #b8c4cc;
    font-size: 18px;
    margin-left: 14px;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: #1da1f2;
        transform: translateY(-3px);
    }
/* ================================
   FOOTER SOCIAL – MODERN STYLE
================================ */
.footer-social-wrap {
    margin-top: 20px;
}

.social-label {
    display: block;
    color: #f49a10;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Pill Container */
.footer-social-pills {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 50px;
    /*border: 1px solid rgba(255,255,255,0.08);*/
}

/* Individual Icons */
.social-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    /* Brand Colors (soft, medical-safe) */
    .social-pill.fb {
        background: #1877f2;
    }

    .social-pill.ig {
        background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
    }

    .social-pill.wa {
        background: #25d366;
    }

    .social-pill.gm {
        background: #ea4335;
    }

    /* Hover Effect */
    .social-pill:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.35);
        filter: brightness(1.08);
    }

.mobile-offcanvas {
    width: 300px;
    background: #fff;
}

.mobile-logo {
    height: 40px;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-menu li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 10px;
        text-decoration: none;
        color: #222;
        font-weight: 500;
    }

        .mobile-menu a:hover {
            color: #0bbcd6;
        }

/* Dropdown */
.mobile-submenu {
    display: none;
    padding-left: 15px;
    background: #f8f9fa;
}

    .mobile-submenu a {
        font-size: 14px;
        padding: 10px;
    }

/* Chevron rotate */
.mobile-dropdown.open > a i.bi-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown a i {
    transition: 0.3s;
}



.center-modern-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* MAP */
.center-map iframe {
    width: 100%;
    height: 320px;
    border: none;
}

/* INFO BOX */
.center-info-box {
    padding: 30px;
}

    .center-info-box h4 {
        color: #f49a10;
        font-weight: 700;
        margin-bottom: 12px;
    }

.center-address {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight:bold;
    font-size:16px;
}

/* META INFO */
.center-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

    .center-meta div {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        color: #333;
    }

    .center-meta i {
        color: #1da1f2;
        font-size: 18px;
    }

    .center-meta a {
        color: #333;
        text-decoration: none;
    }

        .center-meta a:hover {
            color: #1da1f2;
        }

/* ACTION BUTTONS */
.center-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .center-actions .btn {
        padding: 10px 22px;
        border-radius: 30px;
        font-weight: 500;
    }