    /* CARD */
    .onc-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }

    .onc-card:hover {
        transform: translateY(-10px);
    }

    /* IMAGE */
    .onc-img-wrap {
        position: relative;
        overflow: hidden;
        height: 200px;
        /* Set your desired height */
    }

    .onc-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures the image covers the container */
        transition: transform 0.6s ease;
    }

    .onc-card:hover .onc-img-wrap img {
        transform: scale(1.1);
        /* Zoom effect on hover */
    }


    /* ICON */
    .onc-icon {
        position: absolute;
        bottom: -28px;
        right: 22px;
        width: 56px;
        height: 56px;
        background: #B32391;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

    .onc-icon i {
        color: #fff;
    }

    .onc-card:hover .onc-icon {
        bottom: 20px;
    }

    /* BODY */
    .onc-body {
        background: #fff;
        transition: background 0.4s ease;
    }

    .onc-card:hover .onc-body {
        background: #B32391;
    }

    /* TEXT */
    .onc-title {
        display: inline-block;
        font-size: 22px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
        margin-bottom: 12px;
        transition: color 0.3s ease;
    }

    .onc-text {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .onc-card:hover .onc-title,
    .onc-card:hover .onc-text {
        color: #fff;
    }

    /* BUTTON */
    .onc-btn {
        display: inline-block;
        padding: 10px 26px;
        border-radius: 30px;
        border: 2px solid #B32391;
        color: #B32391;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .onc-card:hover .onc-btn {
        background: #fff;
        color: #B32391;
        border-color: #fff;
    }

    /* titile about  */
    .onc-section-title {
        color: #2b6cb0;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        padding-bottom: 12px;
    }

    .onc-section-title::after,
    .onc-section-title::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
    }

    .onc-section-title::after {
        width: 60px;
        background: #3cb04c;
    }

    .onc-section-title::before {
        width: 30px;
        bottom: -6px;
        background: #1e90ff;
    }

    /* title center */
    .onc-section-title-center {
        color: #2b6cb0;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        padding-bottom: 16px;
        text-align: center;
    }

    /* shared line styles */
    .onc-section-title-center::after,
    .onc-section-title-center::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 3px;
    }

    /* main line */
    .onc-section-title-center::after {
        width: 60px;
        background: #3cb04c;
        bottom: 0;
    }

    /* small accent line */
    .onc-section-title-center::before {
        width: 30px;
        background: #1e90ff;
        bottom: -6px;
    }

    /* Purple border and white background for counter-item */
    .counter-item {
        border: 2px solid #B32391;
        /* Purple border */
        background-color: #ffffff;
        /* White background */
    }

    /* team */
    /*** Team Vertical Card ***/
    .team .team-item {
        height: 600px;
        width: 100%;
        background: #B32391;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Image area */
    .team .team-item .team-img {
        flex: 1;
        /* takes maximum space */
        position: relative;
        overflow: hidden;
    }

    .team .team-item .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* VERY IMPORTANT */
        transition: transform 0.5s ease;
    }

    .team .team-item:hover .team-img img {
        transform: scale(1.1);
    }

    /* Image overlay */
    .team .team-item .team-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        opacity: 0;
        transition: 0.4s;
    }

    .team .team-item:hover .team-img::after {
        opacity: 1;
    }

    /* Social icons */
    .team .team-item .team-icon {
        position: absolute;
        bottom: 15px;
        right: 15px;
        z-index: 2;
    }

    .team .team-item .team-icon .btn {
        background: #fff;
        color: #B32391;
        border: none;
    }

    /* Content area (BOTTOM ONLY, SMALL HEIGHT) */
    .team .team-item .team-title {
        background: #B32391;
        color: #fff;
        padding: 15px;
        text-align: center;
    }

    .team .team-item .team-title h4,
    .team .team-item .team-title p {
        color: #fff;
    }

    /*** Responsive ***/
    @media (max-width: 768px) {
        .team .team-item {
            height: auto;
        }

        .team .team-item .team-img {
            height: 300px;
            flex: none;
        }
    }

    /* cta */
    /*** Call To Action ***/
    .cta-section {
        background-color: #2b6cb0;
        padding: 60px 0;
    }

    .cta-title {
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cta-text {
        color: #e6f0ff;
        font-size: 16px;
        margin-bottom: 0;
    }

    .cta-btn {
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
    }

    /* testi */
    /*** Testimonial Section ***/
    .testimonial-section {
        padding: 20px 10px 20px 10px;
        /* background: #ffffff; */
    }

    .testimonial-slider {
        max-width: 500px;
        margin: auto;
        position: relative;
    }

    .testimonial {
        display: none;
        text-align: center;
        background: #ffffff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .testimonial.active {
        display: block;
    }

    .testimonial p {
        font-size: 16px;
        color: #000000;
        margin-bottom: 15px;
    }

    .testimonial h5 {
        color: #3cb04c;
        font-weight: 600;
    }

    /* Dots */
    .testimonial-nav {
        text-align: center;
        margin-top: 15px;
    }

    .testimonial-nav .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .testimonial-nav .dot.active {
        background: #2b6cb0;
    }

    .testimonial-gradient {
        background: linear-gradient(135deg,
                rgba(0, 0, 0, 0.579),
                rgba(31, 31, 31, 0.268)) !important;

        color: #6a6a6a;
    }

    /* Headings & text inside */
    .testimonial-gradient h4,
    .testimonial-gradient h2,
    .testimonial-gradient p,
    .testimonial-gradient h5 {
        color: #ffffff !important;
    }

    /* Testimonial text card look */
    .testimonial {
        background: rgba(255, 255, 255, 0.15);
        padding: 20px;
        border-radius: 10px;
        backdrop-filter: blur(4px);
    }

    /* Dots styling */
    .testimonial-nav .dot {
        background: rgba(255, 255, 255, 0.5);
    }

    .testimonial-nav .dot.active {
        background: #ffffff;
    }



    /* ===== Carousel Slide Base ===== */
    .header-carousel-item {
        height: 90vh;
        /* Responsive height */
        min-height: 420px;
        /* Mobile safety */
        max-height: 800px;
        /* Large screen limit */

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;

        position: relative;
        display: flex;
        align-items: center;
    }

    /* ===== Overlay for readability ===== */
    .carousel-overlay {
        position: absolute;
        inset: 0;
        /* background: linear-gradient(to right,
                rgba(255, 255, 255, 0.85),
                rgba(255, 255, 255, 0.6)); */
    }

    /* Optional blue overlay */
    .carousel-overlay.blue {
        /* background: linear-gradient(to right,
                rgba(255, 255, 255, 0.75),
                rgba(230, 242, 255, 0.6)); */
    }

    /* ===== Content Card ===== */
    .carousel-content {
        background: rgba(255, 255, 255, 0.088);
        backdrop-filter: blur(6px);
        padding: 30px;
        border-radius: 16px;
        color: #333;
        z-index: 2;
    }

    .carousel-content p {
        color: #4c4c4c;
    }

    /* ===== Owl Fix ===== */
    .header-carousel .owl-stage,
    .header-carousel .owl-item,
    .header-carousel .owl-stage-outer {
        height: 100%;
    }

    /* ===== Responsive Breakpoints ===== */
    @media (max-width: 992px) {
        .header-carousel-item {
            height: 70vh;
            min-height: 380px;
        }

        .carousel-content {
            padding: 20px;
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .header-carousel-item {
            height: 60vh;
            min-height: 320px;
        }

        .carousel-content h2 {
            font-size: 26px;
        }

        .carousel-content p {
            font-size: 14px;
        }
    }



    /* banner butns */
    /* Solid Blue Button */
    .btn-primary-custom {
        background-color: #2b6cb0;
        color: #ffffff;
        border: 2px solid #2b6cb0;
        transition: all 0.3s ease;
    }

    .btn-primary-custom:hover {
        background-color: #1f4f85;
        border-color: #1f4f85;
        color: #ffffff;
    }

    /* Outline Blue Button */
    .btn-outline-primary-custom {
        background-color: transparent;
        color: #2b6cb0;
        border: 2px solid #2b6cb0;
        transition: all 0.3s ease;
    }

    .btn-outline-primary-custom:hover {
        background-color: #2b6cb0;
        color: #ffffff;
    }


    /* service images */
    .onc-img-cover {
        background-image: url("img/Cervical-cancer.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 450px;
        border-radius: 12px;
    }

    @media (max-width: 768px) {
        .onc-img-cover {
            height: 280px;
        }
    }