/* Hero Packages Slider Section */
.hero-packages-slider {
    background: linear-gradient(135deg, #0b2baa 0%, #0b2baa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    color: white;
    padding-right: 30px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-teal {
    color: #0df8de;
}

.offer-badge {
    background: white;
    border-radius: 10px;
    padding: 15px 25px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offer-text {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.offer-percent {
    color: #0b2baa;
    font-size: 36px;
    font-weight: 700;
    margin: 0 5px;
}

.offer-off {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.hero-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.feature-item i {
    color: #0df8de;
    font-size: 18px;
}

.hero-book-btn {
    background: #0b2baa;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-book-btn:hover {
    background: #0a1f7a;
    color: white;
    transform: translateY(-2px);
}

.package-cards-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-ribbon {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    transform: rotate(15deg);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: #0df8de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: #0b2baa;
    margin-bottom: 8px;
}

.package-params {
    color: #0df8de;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.quality-badge {
    background: #0df8de;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.package-pricing {
    margin-bottom: 20px;
}

.original-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    margin-right: 10px;
}

.discounted-price {
    color: #0b2baa;
    font-size: 28px;
    font-weight: 700;
}

.only-text {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.carousel-nav-prev,
.carousel-nav-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: #0b2baa;
    font-size: 16px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-prev {
    margin-left: 20px;
}

.carousel-nav-next {
    margin-right: 20px;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover {
    background: white;
    transform: scale(1.1);
}

.hero-terms {
    position: absolute;
    bottom: 40px;
    right: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b9bcc8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: #0E289C;
}

/* Health Packages Section */
.health-packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}
/* Package Cards (Health Checkups Page Style) */
.package-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: start;
}
.package-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: start;
}

.package-parameters {
    text-align: start;
    color: #2563eb;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.package-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-item i {
    color: #2563eb;
    font-size: 14px;
    width: 16px;
}

.package-pricing {
    margin-bottom: 20px;
    position: relative;
}

.discount-badge {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 12.75px;
    right: -20px;
    background-color: #0B2BAA;
    border-radius: 20px 0px 0px 20px;
    padding: 5px 20px 5px 10px;
    background-image: -webkit-linear-gradient(309deg, #0fb8ad 0%, #0fb8ad 11%, #494cfd 100%);
    background-image: -o-linear-gradient(309deg, #0fb8ad 0%, #0fb8ad 11%, #494cfd 100%);
    background-image: linear-gradient(141deg, #0fb8ad 0%, #0fb8ad 11%, #494cfd 100%);
}

.discounted-price {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    margin-top: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

.collection-options {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.collection-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.collection-option i {
    color: #10b981;
    font-size: 16px;
}

.btn-book-now {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-book-now:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    color: white;
}

.view-all-btn {
    background: #0b2baa;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #0b2baa;
    color: white;
    transform: translateY(-2px);
}

/* Tests by Health Risk Section */
.tests-by-health-risk-section {
    padding: 80px 0;
    background: white;
}

.health-risk-test-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.health-risk-test-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #0df8de;
}

.test-image-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-risk-test-card .test-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}


/* Feature Cards Section */
.feature-cards-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: #e8f0fe;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: left;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #e8f0fe;
    border: 2px solid #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-title {
    color: #1565c0;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 1.3;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
}

.why-choose-box {
    background: url('https://uat.augmentumdiagnostics.com/public/images/why-choose-us-bg.png') center/cover, linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: left;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    border-radius: 20px;
}

.why-choose-content {
    position: relative;
    z-index: 2;
}

.why-choose-title {
    color: white;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.why-choose-text {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 85%;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

.hero-slide-banner {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.hero-slide-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.carousel-control-next, .carousel-control-prev{
    width: 40px !important;
    height: 40px !important;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #c4c4c4;
    color: #fff;
}
.carousel-control-next{
    right: 15px;
}
.carousel-control-prev{
    left: 15px;
}

 .fa-liver::before {
        content: "\f7aa";
    }
    .fa-kidneys::before {
        content: "\f7ad";  
    }
    .fa-thyroid::before {
        content: "\f7b2";
    }
    .fa-disease::before {
        content: "\f7b6";
    }
    
    /* Smart Report Phone Animation */
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .smart-report-phones {
        padding: 20px;
    }
    
    .phone-mockup-1,
    .phone-mockup-2 {
        transition: transform 0.3s ease;
    }
    
    .phone-mockup-1:hover,
    .phone-mockup-2:hover {
        transform: scale(1.05);
    }
    
    .floating-elements .floating-dot {
        opacity: 0.7;
    }
    
    /* Offer Image Cards */
    .offer-image-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .offer-image-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    
    .offer-image-card img {
        transition: transform 0.3s ease;
        border-radius: 10px;
    }
    
    .offer-image-card:hover img {
        transform: scale(1.02);
    }
    
    /* Blog Section */
    .blog-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .blog-card:hover {
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .blog-image-container {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .blog-image {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease;
    }
    
    .blog-card:hover .blog-image {
        transform: scale(1.05);
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .blog-meta {
        font-size: 12px;
        margin-bottom: 0;
    }
    
    .blog-meta .text-primary {
        color: var(--primary-blue) !important;
    }
    
    .blog-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    
    .blog-pagination .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        display: inline-block;
        transition: background 0.3s ease;
        cursor: pointer;
        border: none;
    }
    
    .blog-pagination .dot.active {
        background: var(--primary-blue);
    }
    
    /* Blog Carousel Controls */
    .blog-carousel-prev,
    .blog-carousel-next {
        width: 45px;
        height: 45px;
        background: white;
        border: 2px solid var(--primary-blue);
        border-radius: 50%;
        top: 40%;
        transform: translateY(-50%);
        opacity: 0.9;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .blog-carousel-prev {
        left: -25px;
    }
    
    .blog-carousel-next {
        right: -25px;
    }
    
    .blog-carousel-prev:hover,
    .blog-carousel-next:hover {
        background: var(--primary-blue);
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }
    
    .blog-carousel-prev i,
    .blog-carousel-next i {
        color: var(--primary-blue);
        font-size: 16px;
        transition: color 0.3s ease;
    }
    
    .blog-carousel-prev:hover i,
    .blog-carousel-next:hover i {
        color: white;
    }
/* Responsive Design */
@media (max-width: 1140px) {
    .hero-slide-banner,.hero-slide-img{
        height: auto;
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .feature-title {
    font-size: 13px !important;
}
    .package-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .carousel-nav-prev,
    .carousel-nav-next {
        display: none;
    }
     .blog-carousel-prev,
        .blog-carousel-next {
            display: none;
        }
         .smart-report-phones .d-flex {
            flex-direction: column;
            align-items: center !important;
            gap: 20px !important;
        }

        .phone-mockup-1 img,
        .phone-mockup-2 img {
            max-height: 300px !important;
        }

        .offer-image-card img {
            height: 200px !important;
        }

        .blog-image-container {
            height: 200px !important;
        }

        .blog-content-overlay h4 {
            font-size: 16px !important;
        }

        .blog-content-overlay p {
            font-size: 12px !important;
        }

        .blog-title {
            font-size: 14px !important;
        }

        .collection-options {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
}
@media (max-width: 576px) {
    .feature-card{
    padding: 10px;
    height: auto;
}
.feature-icon {
    width: 35px;
    height: 35px;
}
.feature-title {
        font-size: 9px !important;
    }
}
/* Lab Tests Section */
.lab-tests-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.fever-flu-card {
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fever-flu-image{
    border-radius: 20px;
    overflow: hidden;
}
.fever-flu-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

.fever-flu-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 20px;
}

.fever-flu-price {
    margin: 25px 0;
}

.price-text {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-amount {
    color: #333;
    font-size: 28px;
    font-weight: 700;
}

.fever-flu-btn {
    background: #2d5a27;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

.lab-tests-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.lab-test-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lab-test-card .test-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.lab-test-card .test-parameter {
    color: #2563eb;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.test-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.test-features {
    margin-bottom: 20px;
}

.test-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.test-features .feature i {
    color: #28a745;
    margin-right: 8px;
    font-size: 10px;
}

.test-book-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
}

.test-book-btn:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Our Facilities Section */
.facilities-section {
    background: white;
    padding: 60px 0;
}



.facilities-header {
    margin-bottom: 30px;
}

.facilities-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.facility-slide {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
}

.facility-image-card {
    width: 98%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.facility-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.facility-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b9bcc8;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0E289C;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
    left: 5px;
}

.slider-nav.next {
    right: 5px;
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
    .fever-flu-title {
        font-size: 24px;
    }

    .fever-flu-subtitle {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .lab-test-card {
        margin-bottom: 20px;
    }

    .home-sample-title,
    .home-sample-subtitle {
        font-size: 18px;
    }

    .facility-title {
        font-size: 20px;
    }

    .facility-description {
        font-size: 13px;
    }

    .facility-card {
        flex-direction: column;
        text-align: center;
    }

    .facility-content {
        padding: 30px 20px;
    }

    .facilities-slider {
        height: 200px;
    }

    .slides-wrapper {
        width: 250%;
    }
}