:root {
    --navy: #1a2a44;
    --yellow: #f7c948;
    --dark-navy: #0f1a2b;
    --light-bg: #f8f9fa;
    --blue-accent: #00aaff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #333;
}

/* Top Head Bar */
.head {
    background-color: blue;
    height: 55px;
    color: white;
}

.head p {
    padding: 10px;
    font-size: 14px;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    height: auto;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .navbar {

        height: auto;
        position: sticky;
        top: 0;
        z-index: 999;
    }


}





.navbar-brand {
    margin-left: 0px;
}

.navbar-brand img {
    height: 90px;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.navbar-brand small {
    font-size: 0.7rem;
    color: #1a2a44;
    letter-spacing: 1px;
    margin-left: 10px;
}

.navbar-brand p {
    font-size: 0.7rem;
    margin-left: 103px;
    margin-top: -20px;
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
    margin: 0 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow) !important;
}








/* Carousel */
.carousel-item img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 200px;
        object-fit: contain;
        background-color: #f8f9fa;
    }
}

/* Section Title */
.section-title {
    color: var(--navy);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Process Cards */
.process-card {
    background: var(--dark-navy);
    color: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    min-height: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .circle {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    color: var(--dark-navy);
    font-weight: bold;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.process-card h5 {
    font-weight: 600;
    margin-top: 1rem;
}

.process-card .icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.delivery-card {
    background: var(--yellow) !important;
    color: var(--dark-navy) !important;
}

.delivery-card .circle {
    background: var(--dark-navy);
    color: white;
}

/* Elevating Healthcare Cards */
.elevate-card {
    background: white;
    border-left: 5px solid var(--navy);
    border-radius: 8px;
    padding: 1.6rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.elevate-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.elevate-card h5 {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: .4rem;
}

.elevate-card .icon {
    font-size: 1.5rem;
    margin-right: .3rem;
}

.elevate-card p {
    margin-bottom: 0;
    font-size: .95rem;
    color: #444;
}

/* Radiology Cards */
.radiology-grid {
    background: #f0f4f8;
    padding: 3rem 0;
}

.radiology-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.radiology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.radiology-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.radiology-card p {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    margin: 0;
}

/* Frequently Scans Carousel */
.freq-carousel .carousel-inner {
    padding: 1rem 0;
}

.freq-carousel img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.freq-carousel .carousel-control-prev,
.freq-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.freq-carousel .carousel-control-prev {
    left: -20px;
}

.freq-carousel .carousel-control-next {
    right: -20px;
}

@media (max-width: 767px) {
    .freq-carousel .carousel-item .row {
        display: flex;
        justify-content: center;
    }

    .freq-carousel img {
        height: auto;
        width: 100%;
    }

    .freq-carousel .carousel-item .col-12,
    .freq-carousel .carousel-item .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        display: block !important;
    }

    .freq-carousel .carousel-item .d-none.d-md-block {
        display: none !important;
    }
}

/* Membership Banner */
.membership-banner {
    background: linear-gradient(135deg, #0f1a2b, #1a2a44);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}

.membership-banner .logo {
    width: 60px;
    margin-bottom: 1rem;
}

.membership-banner h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.membership-banner .btn-explore {
    background: white;
    color: var(--navy);
    border: none;
    padding: .6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.membership-banner .btn-explore:hover {
    background: var(--yellow);
    color: var(--dark-navy);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: #ddd;
    padding: 3rem 0 1.5rem;
    font-size: .95rem;
    margin-top: 100px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: .6rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--yellow);
}

.footer i {
    color: var(--yellow);
    margin-right: .5rem;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1582711012124-9e2b5c45da5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.stat-item i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--blue-accent);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-accent);
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    animation: zoomIn 1.2s ease-out forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.features-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.features-title {
    font-size: 1.1rem;
    color: var(--blue-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.features-heading {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: justify;
}

.features-heading span {
    display: block;
}

.underline {
    width: 60px;
    height: 3px;
    background: var(--blue-accent);
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), rgba(0, 170, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 170, 255, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #e6f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-accent);
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--blue-accent);
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--blue-accent);
    margin-bottom: 5px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text h4,
.feature-item:hover .feature-text p {
    color: var(--blue-accent) !important;
    font-weight: 600;
}

.features-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.features-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #f0f8ff;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.15);
}

/* Sticky Buttons */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    left: 20px;
    background: #25D366;
    animation: pulse 2s infinite;
}

.call-btn {
    right: 20px;
    background: #007bff;
    animation: pulse-call 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@media (max-width: 480px) {
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
    }

    .whatsapp-btn {
        left: 15px;
    }

    .call-btn {
        right: 15px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        gap: 30px;
    }

    .stat-item i,
    .stat-number {
        font-size: 1.8rem;
    }

    .containers {
        flex-direction: column;
        text-align: center;
    }

    .features-content {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}