:root {
    --primary-blue: #1F3A5F;
    --secondary-blue: #3A6EA5;
    --kidney-red: #8B2E2E;
    --kidney-light: #C97A6B;
    --artery-red: #D63C3C;
    --vein-blue: #2F6FB5;
    --background: #FFFFFF;
}

body {
    padding-top: 90px;
    font-family: 'Lato', sans-serif;
}



.logo {
    height: 160px;
    margin-left: -50px;
}

.navbar {
    z-index: 999;
    height: 110px;
}

.nav-link {
    color: var(--primary-blue);
    font-weight: 500;
    position: relative;
}

a.nav-link {
    font-weight: 700;
}

@media (min-width: 992px) {
    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background: var(--artery-red);
        transition: 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .nav-link::after {
        display: none;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--artery-red);
}

.appoint-btn {
    background: var(--primary-blue);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    margin-top: -24px;
}

.appoint-btn:hover {
    background: #1F3A5F;
    color: #FFFFFF;
}

.services-menu {
    display: none;
}

/* DESKTOP */
@media (min-width: 992px) {

    .services-dropdown {
        position: relative;
        padding-bottom: 20px;
    }

    .services-menu {
        position: absolute;
        top: 142%;
        left: 180%;
        transform: translateX(-50%);
        width: 1100px;
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .services-dropdown.open .services-menu {
        display: block;
    }
}

.service-item {
    display: block;
    padding: 14px 0;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
}

.service-item:hover {
    color: var(--artery-red);
    padding-left: 6px;
}

@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background: #fff;
        padding: 20px;
        transition: 0.3s;
        z-index: 9999;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .desktop-btn {
        display: none;
    }

    .services-menu {
        position: static;
        width: 100%;
        display: none;
        max-height: 220px;
        overflow-y: auto;
        padding: 10px;
        border: 1px solid #eee;
        border-radius: 10px;
    }

    .services-dropdown.open .services-menu {
        display: block;
    }

    .services-menu .col-md-3 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
        height: 150px;
        margin-left: -40px;
        margin-top: -48px;
    }

    button.navbar-toggler {
        margin-top: -55px;
    }

    .navbar {
        z-index: 999;
        height: 87px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mobile-img {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 600px;
    color: #fff;
    padding-top: 90px;
    padding-left: 35px;
}

.hero-content h5 {
    color: #d63c3c;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    margin-top: 10px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.circle {
    width: 70px;
    height: 70px;
    border: 2px solid #d63c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.stat span {
    display: block;
    font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .hero-img {
        height: 500px;
    }

    .hero-content {
        text-align: left;
        padding: 80px 20px 0;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 15px;
    }

    .circle {
        width: 55px;
        height: 55px;
        font-size: 12px;
    }
}

.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    color: #fff;
}

/* ICON SIZE */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
}

/* HOVER EFFECT */
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #d63c3c;
}

@media (max-width: 768px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* ===== SECTION ===== */
.stats-section {
    background: #ffffff;
    padding: 40px 0;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #d63c3c;
    transition: 0.3s;
    cursor: pointer;
}

.icon-box {
    width: 65px;
    height: 65px;
    /* background: rgba(214, 60, 60, 0.1); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* ICON */
.icon-box img {
    width: 35px;
    transition: 0.3s;
}

.stat-text h4 {
    margin: 0;
    font-weight: 700;
    color: #1f3a5f;
}

.stat-text p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.stat-card:hover {
    background: #1f3a5f;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #1f3a5f;
}

.stat-card:hover .icon-box {
    background: #fff;
}

.stat-card:hover h4,
.stat-card:hover p {
    color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .stat-card {
        padding: 18px;
        gap: 15px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box img {
        width: 28px;
    }

    .stat-text h4 {
        font-size: 18px;
    }

    .stat-text p {
        font-size: 13px;
    }
}

/* ===== SECTION ===== */
.about-dr {
    padding: 70px 0;
    background: #ffffff;
}

/* ===== IMAGE ===== */
.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #1f3a5f;
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatY 4s ease-in-out infinite;
}

/* Fold effect */
.exp-badge::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 30px;
    height: 30px;
    /* background: #b52d2d; */
    transform: rotate(45deg);
    border-radius: 4px;
}

.exp-badge h3 {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
}

.exp-badge p {
    font-size: 13px;
    margin: 0;
}

@keyframes floatY {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-content {
    padding-left: 30px;
}

.about-content h5 {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    text-transform: uppercase;
}

.about-content h5 span {
    color: var(--primary-blue);
}

.about-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.about-content h2 span {
    color: var(--primary-blue);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.about-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.about-list i {
    /* background: rgba(214, 60, 60, 0.1); */
    color: #fbfbfb;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 10px;
    background: #1f3a5f;
}

/* ===== BUTTON ===== */
.about-btn {
    display: inline-block;
    margin-top: 25px;

    background: var(--primary-blue);
    color: #fff;

    padding: 12px 28px;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.about-btn:hover {
    background: var(--artery-red);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .about-content {
        padding-left: 0;
        margin-top: 25px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        text-align: justify;
        line-height: 1.8;
    }


    .about-list li {
        text-align: justify;
    }

    .exp-badge {
        width: 100px;
        height: 100px;
        bottom: 15px;
        right: 15px;
    }

    .exp-badge h3 {
        font-size: 20px;
    }
}


/* ===== SECTION ===== */
.uro-services {
    padding: 70px 0;
    background: #f5f7fb;
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.uro-card {
    display: block;
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}

.uro-card .icon img {
    width: 60px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.uro-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.uro-card p {
    font-size: 14px;
    color: #666;
}

/* ===== HOVER EFFECT ===== */
.uro-card:hover {
    transform: translateY(-10px);

    border: 2px solid var(--kidney-red);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON HOVER */
.uro-card:hover .icon img {
    transform: scale(1.1);
}

/* TEXT COLOR */
.uro-card:hover h4 {
    color: var(--kidney-red);
}

/* ===== VIEW MORE BUTTON ===== */
.view-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-block;

    background: var(--primary-blue);
    color: #fff;

    padding: 12px 28px;
    border-radius: 50px;
    /* full rounded */

    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */
.view-more-btn:hover {
    background: var(--kidney-red);
    color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .uro-card {
        padding: 25px 15px;
    }

    .uro-card h4 {
        font-size: 16px;
    }

    .uro-card p {
        font-size: 13px;
    }

    .view-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* SECTION */
.membership-section {
    padding: 60px 0;
    background: #fff;

}

.membership-title {
    font-size: 35px;
    font-weight: 700;
    color: #1f3a5f;
    margin-bottom: 40px;
}


.membership-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.membership-card img {
    max-height: 60px;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;

}

.membership-slider {
    display: none;

}

@media(max-width:991px) {
    .membership-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media(max-width:576px) {
    .membership-grid {
        display: none;
    }

    .membership-slider {
        display: block;
        overflow: hidden;
    }

    .membership-track {
        display: flex;
        gap: 15px;
        width: max-content;
        animation: scrollMembership 25s linear infinite;
    }

    .membership-card {
        min-width: 130px;
        height: 85px;
        padding: 15px;

    }

    .membership-card img {
        max-height: 45px;
    }

}


/* INFINITE SMOOTH SCROLL */
@keyframes scrollMembership {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f4f5f7;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-small {
    color: #7a2d91;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;

}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #1F3A5F, #1F3A5F);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.about-images {
    position: relative;
    padding-left: 60px;
}

.about-img-big {
    position: relative;
    z-index: 1;
}

.about-img-big img {
    width: 100%;
    border-radius: 40px;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 55%;
    z-index: 2;
}

.about-img-small img {
    width: 100%;
    border-radius: 30px;
    border: 8px solid #fff;
}

.about-badge {
    position: absolute;
    top: 80px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: #1f3a5f;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.about-badge span {
    font-size: 28px;
    font-weight: 700;
}

.about-badge p {
    margin: 0;
    font-size: 14px;
}

@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        margin-top: 50px;
        padding-left: 40px;
    }

    .about-img-small {
        width: 60%;
    }

    .about-badge {
        width: 120px;
        height: 120px;
        left: 0;
    }

}

@media(max-width:576px) {

    .about-title {
        font-size: 30px;
    }

    .about-img-small {
        width: 70%;
        bottom: -20px;
    }

    .about-badge {
        width: 90px;
        height: 90px;
        top: -20px;
    }

    .about-badge span {
        font-size: 18px;
    }

    .about-badge p {
        font-size: 12px;
    }

}

:root {
    --primary-blue: #1F3A5F;
    --kidney-red: #8B2E2E;
}

/* SECTION */
.moments-section {
    padding: 80px 0;
    background: #ffffff;
}

.moments-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.moments-content h2 span {
    color: var(--kidney-red);
}

.moments-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.moments-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.moments-btn:hover {
    background: var(--kidney-red);
}

.moments-gallery {
    display: flex;
    gap: 20px;
}

.col-scroll {
    width: 33.33%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 12s linear infinite;
}

.track img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: 0.3s;
}

.track img:hover {
    transform: scale(1.05);
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 991px) {
    .moments-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .moments-content h2 {
        font-size: 26px;
    }

    .moments-gallery {
        gap: 10px;
    }

    .col-scroll {
        height: 300px;
    }

    .track {
        gap: 10px;
    }

    .track img {
        border-radius: 12px;
    }
}

@media (max-width: 576px) {

    .moments-gallery {
        flex-direction: row;
    }

    .col-scroll {
        height: 220px;
    }
}


/* Journey SECTION */
.journey-section {
    background: #1f3a5f;
    padding: 80px 20px;
    color: #fff;
    width: 100%;
    padding-bottom: 20px;
}


.journey-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}


.journey-main-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 80px;
}

.journey-timeline {
    position: relative;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%);
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    margin-bottom: 80px;
}

.journey-left {
    text-align: right;
    padding-right: 40px;
}

.journey-left h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.journey-center {
    display: flex;
    justify-content: center;
    position: relative;
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.journey-icon::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: -1;
}

.journey-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.journey-right {
    padding-left: 40px;
}

.journey-right p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


.journey-mobile-title {
    display: none;
}

@media(max-width:991px) {

    .journey-main-title {
        font-size: 26px;
        text-align: left;
        margin-bottom: 40px;
    }

    .journey-timeline::before {
        display: none;
    }

    .journey-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .journey-left {
        display: none;
    }

    .journey-center {
        flex-shrink: 0;
    }

    .journey-icon {
        width: 60px;
        height: 60px;
    }

    .journey-icon::before {
        width: 90px;
        height: 90px;
    }

    .journey-right {
        padding-left: 0;
    }

    .journey-mobile-title {
        display: block;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .journey-right p {
        font-size: 15px;
    }
}



/* ================= SECTION ================= */
.testimonial-section {
    background: #f4f5f7;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1F3A5F;
}

.testimonial-subtitle {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ================= GOOGLE RATING ================= */
.google-stars {
    color: #f4b400;
    font-size: 22px;
    margin: 10px 0;
}

/* ================= SWIPER ================= */
.testimonialSwiper {
    width: 100%;
    padding: 20px 0;
}

.testimonialSwiper .swiper-wrapper {
    align-items: center;
}

.testimonialSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

/* ================= CARD ================= */
.testimonial-card {
    width: 420px;
    max-width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    opacity: 0.4;
    transform: scale(0.85);
}

/* ACTIVE CARD */
.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* SIDE CARDS */
.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
    opacity: 0.6;
}

/* ================= HEADER ================= */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6ab04c;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-header h6 {
    font-size: 18px;
    margin: 0;
    color: #222;
}

.stars {
    color: #f4b400;
    font-size: 14px;
}

/* ================= TEXT ================= */
.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
}

/* ================= FOOTER ================= */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

/* ================= NAV BUTTONS ================= */
.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    width: 55px;
    height: 55px;
    background: #1F3A5F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.testimonial-swiper-button-prev::after,
.testimonial-swiper-button-next::after {
    color: #fff !important;
    font-size: 18px;
    font-weight: bold;
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-title {
        font-size: 26px;
    }

    .testimonial-card {
        width: 90%;
        padding: 22px;
        transform: scale(1) !important;
        opacity: 1 !important;
    }

    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .testimonial-swiper-button-prev,
    .testimonial-swiper-button-next {
        width: 42px;
        height: 42px;
    }
}

.uro-care-section {
    padding: 80px 0;
    background: #ffffff;
}

.uro-care-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.uro-care-left {
    width: 48%;
}

.uro-care-left img {
    width: 100%;
    border-radius: 20px;
    margin-left: 40px;
}

/* RIGHT */
.uro-care-right {
    width: 52%;
    background: #1f3a5f;
    padding: 50px;
    border-radius: 10px;
    color: #fff;
}

.uro-care-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.uro-care-right p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #fff;
}

/* STATS */
.uro-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.uro-stat {
    flex: 1;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.uro-stat .num {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.uro-stat .label {
    font-size: 13px;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .uro-care-wrapper {
        flex-direction: column;
    }

    .uro-care-left,
    .uro-care-right {
        width: 100%;
    }

    .uro-care-right {
        padding: 30px;
    }

    .uro-stats {
        flex-direction: column;
    }
}

/* SECTION */
.consult-section {
    padding: 80px 0;
    background: #f5f6f8;
}

.consult-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT FORM */
.consult-form-box {
    width: 50%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consult-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1f3a5f;
}

/* INPUTS */
.consult-form-box input,
.consult-form-box select {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.consult-form-box input:focus,
.consult-form-box select:focus {
    border-color: #1f3a5f;
}

/* ACTION ROW */
.consult-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.send-btn {
    background: #1f3a5f;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #d63c3c;
}

.contact-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-inline a {
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-inline .whatsapp {
    color: #25D366;
    font-weight: 600;
    font-size: 16px;
}

.contact-inline .call {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.divider {
    color: #aaa;
}

.consult-content {
    width: 60%;
}

.consult-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f3a5f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consult-content h2 span {
    color: #d63c3c;
}

.consult-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* LIST */
.consult-content ul {
    list-style: none;
    padding: 0;
}

.consult-content ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.consult-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1f3a5f;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .consult-wrapper {
        flex-direction: column;
    }

    .consult-form-box,
    .consult-content {
        width: 100%;
    }

    .consult-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .consult-action {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= FAQ SECTION ================= */
.section.faq {
    background: #1f3a5f;
    padding: 80px 0;
}

.section.faq .container {
    max-width: 1100px;
}

.accordion {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.accordion-button {
    background-color: #ffffff;
    color: #1a365d;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 18px 20px;
    border-radius: 0;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Hover */
.accordion-button:hover {
    background-color: #dfe3e8;
}

.accordion-button:not(.collapsed) {
    background-color: #d63c3c !important;
    color: #ffffff !important;
}

/* Arrow icon */
.accordion-button::after {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.accordion-body {
    background-color: #ffffff;
    color: #444;
    font-size: 0.95rem;
    padding: 16px 20px;
    line-height: 1.6;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .section.faq {
        padding: 60px 0;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .accordion-body {
        padding: 14px 16px;
    }
}


/* SECTION */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

/* TITLE */
.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f3a5f;
    margin-bottom: 40px;
}

/* CARD FULL CLICK */
.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* IMAGE */
.blog-img {
    overflow: hidden;
    border-radius: 15px;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

/* 🔥 HOVER ZOOM */
.blog-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.blog-content {
    padding-top: 15px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

.read-more {
    display: inline-block;
    background: #1f3a5f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
}

.view-all-btn {
    display: inline-block;
    background: #1f3a5f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}



/* RESPONSIVE */
@media (max-width: 768px) {

    .blog-title {
        font-size: 24px;
    }

    .blog-img img {
        height: 180px;
    }

    .blog-content h4 {
        font-size: 16px;
    }
}


/* ================= FOOTER ================= */

.main-footer {
  background: #0b0b0b;
  color: #fff;
  padding: 60px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.footer-links a {
  color: #bdbdbd;
  margin-right: 20px;
  text-decoration: none;
  font-size: 14px;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
}

.footer-quick-links a {
  color: #fff;
  text-decoration: none;
}

.footer-quick-links a:hover {
  color: #e69a2e;
}

.quick-title {
  font-weight: 600;
  margin-right: 10px;
}


.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #1f3a5f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  text-decoration: none;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}


.footer-box img {
  width: 170px;
  margin-bottom: 0px;
}

.footer-box p {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
}

.footer-box h5 {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-box h5::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -6px;
  left: 0;
}


.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #fff;
}


.footer-box iframe {
  width: 100%;
  border: 0;
  margin-top: 10px;
  border-radius: 6px;
}


.footer-bottom {
  background: #000;
  margin-top: 50px;
  border-top: 1px solid #222;
}

.footer-bottom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px 0;
}

.footer-developed {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer-developed a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
  color: #bdbdbd;
  font-size: 14px;
}

.footer-bottom a {
  color: #bdbdbd;
  text-decoration: none;
}

.footer-policy{
  text-align: right;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 40px;
}

.footer-policy:hover{
  color: #1f3a5f;
}



@media(max-width:992px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

@media (max-width:768px) {


  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }


  .footer-quick-links {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 8px;
  }


  .footer-quick-links span {
    margin: 0 4px;
  }


  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }


  .logo-box img {
    margin: auto;
    display: block;
  }

  .footer-box p {
    text-align: center;
  }


  .footer-box h5 {
    text-align: center;
  }


  .footer-box h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-box iframe {
    height: 150px;
  }

  .footer-bottom-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
}


}
