﻿/* Medicana Website Styles */

/* Roobert font import */
@font-face {
    font-family: 'Roobert';
    src: url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert';
    src: url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Tema değişkenleri */
:root {
    --theme: #fff;
    --header-bg: linear-gradient(270deg, #d9f9ff 20%, hsla(0, 0%, 100%, .6) 80%);
    --page-title-bg: linear-gradient(117deg, #edf6ff, #baddff);
    --main-page-title-bg: linear-gradient(112deg, #edf6ff, #baddff);
    --doctor-page-title-bg: linear-gradient(113deg, #edf6ff, #fff);
    --primary-color: #25b8c5;
    --secondary-color: #042d59;
    --secondary-dark-color: #031b34;
    --primary-card-color: #25b8c50b;
    --primary-opacity-color: #25b8c512;
    --primary-hover-color: #1dabb7;
    --secondary-card-color: #03468e;
    --text-color: #042d5999;
    --gray-color: #042d5939;
    --grey-color: #031b340b;
    --white: #fff;
    --doctor-card-bg: #f5fcfd;
    --elips-bg: #25b8c524;
    --border-gray: #042d5915;
    --shadow: #042d5955;
    --scroll-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --scroll-bg: rgba(37, 184, 197, 0.1);
    --scroll-thumb: rgba(37, 184, 197, 0.7);
    --scroll-thumb-hover: rgba(37, 184, 197, 0.9);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--theme);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--scroll-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scroll-thumb);
    border-radius: 10px;
    border: 3px solid var(--scroll-bg);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--scroll-thumb-hover);
    }

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb) var(--scroll-bg);
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--primary-hover-color);
    }

.container, .sub-container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Header styles */
header {
    /*   background: linear-gradient(117deg, #edf6ff, #baddff);*/
    background-image: linear-gradient(270deg, rgb(217, 249, 255) 20%, rgba(255, 255, 255, 0.6) 80%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

    header.scrolled {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 11px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

    .logo a {
        display: block;
    }

    .logo img {
        width: 306px;
        height: auto;
    }

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-menu li {
        margin-left: 30px;
    }

        .nav-menu li:first-child {
            margin-left: 0;
        }

        .nav-menu li a {
            color: #042D59;
            font-size: 16px;
            font-weight: 500;
            font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .nav-menu li a:hover {
                color: #25B8C5;
            }

.menu-dot {
    color: #25B8C5;
    margin-right: 8px;
    font-size: 20px;
}

.contact-btn {
    background-color: #fff;
    color: #25B8C5 !important;
    padding: .3rem 1.5rem;
    border-radius: 31px;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease !important;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

    .contact-btn:hover {
        background-color: #25B8C5;
        color: #fff!important;
        transition: all 0.3s ease !important;
    }
        .contact-btn:hover #circle-phone {
            fill: #fff !important;
            transition: all 0.3s ease !important;
        }
   

@media (max-width: 1024px) {
    .nav-menu li {
        margin-left: 20px;
    }

        .nav-menu li a {
            font-size: 14px;
        }

    .contact-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
    }

    .logo {
    }

    nav {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

        .nav-menu li {
            margin: 0;
            width: 100%;
            border-top: none;
            padding: 10px 0;
        }

    .contact-btn {
        margin-top: 10px;
        display: inline-block;
    }
}

/* Hero Stats Section */
.hero-stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(112deg, #edf6ff 0%, #baddff 100%);
    z-index: 1;
}

    .hero-stats::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at right top, rgba(37, 184, 197, 0.1) 0%, transparent 60%);
        z-index: -1;
    }

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.hero-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

    .hero-left h1 {
        font-size: 3rem;
        line-height: 1.2;
        color: #042D59;
        font-weight: 700;
        margin: 30px 0;
        max-width: 100%;
        font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

.search-box {
    display: flex;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .029);
    margin-bottom: 30px;
    position:relative;
}
.search-box ul.suggestionsList{
    top:65px;
}

    .search-box input {
        flex: 1;
        padding: .7rem 0.4rem;
        padding-left: 10rem;
        border-radius: 30px;
        border: none;
        font-size: 16px;
        color: #555;
        outline: none;
        font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .search-box button {
        background-color: #25B8C5;
        border: none;
        color: white;
        position: absolute;
        left: 70px;
        top: 14px;
        width: 45px;
        height: 30px;
        background: var(--primary-color);
        border-radius: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .search-box button:hover {
            background-color: #1a8f99;
        }

        .search-box button svg {
            width: 20px;
            height: 20px;
        }

.hero-right {
    width: 55%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-cards-top {
    display: flex;
    gap: 20px;
    z-index: 2;
    width: 100%;
    justify-content: center
}

    .stats-cards-top .stats-card {
        margin-bottom: 0;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }

        .stats-cards-top .stats-card img {
            background: #fff;
            width: 50px;
            height: 50px;
            border-radius: 5px;
            padding: 10px;
        }

.hospital-image {
    width: 720px;
    height: auto;
    object-fit: contain;
    position: absolute;
    bottom: -10px;
    right: 0%;
    z-index:-1;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.left-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-stats {
    align-items: flex-start;
}

.middle-space {
    min-height: 10px;
}

.stats-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .stats-card.dark {
        background-color: #042D59;
        color: white;
    }

    .stats-card.turquoise {
        background-color: #25B8C5;
        color: white;
    }

    .stats-card.white {
        background-color: white;
        color: #042D59;
    }

    .stats-card.yellow {
        color: #042D59;
        justify-content: space-between;
        padding-right: 70px;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

        .stats-card.yellow .stats-info {
            z-index: 2;
            max-width: 75%;
        }

        .stats-card.yellow .smile-icon {
            background: #f5c61e1e;
            padding: 12px;
            border-radius: 10px;
            left: 15px;
            top: 15px;
            z-index: 1;
            width: 55px;
            height: 55px;
        }

        .stats-card.yellow .patient-image {
            position: absolute;
            right: -15px;
            bottom: -10px;
            width: 190px;
            height: auto;
            z-index: 1;
        }

    .stats-card img {
        width: 32px;
        height: 32px;
        margin-right: 16px;
        object-fit: contain;
    }

.stats-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 3px;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.stats-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.85;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (max-width: 1200px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .stats-cards-top {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .departments-image img {
        transform: unset !important;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-left, .hero-right {
        width: 100%;
    }
    .hero-left {
        padding-right: 0!important;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .left-stats, .right-stats {
        width: 100%;
    }

    .middle-space {
        display: none;
    }

    .hospital-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        padding: 60px 15px 30px;
    }

    .hero-left h1 {
        font-size: 2rem;
        max-width: 100%;
    }

    .stats-card {
        padding: 15px;
    }

        .stats-card img {
            width: 28px;
            height: 28px;
            margin-right: 12px;
        }

    .stats-info h3 {
        font-size: 16px;
    }

    .stats-info p {
        font-size: 11px;
    }

    .stats-cards-top {
        flex-direction: column;
    }

    .hospital-image {
        margin-top: 40px;
    }

    .stats-card.yellow {
        padding-right: 60px;
    }

        .stats-card.yellow .patient-image {
            width: 25%;
            right: -10px;
        }
}

@media (max-width: 575px) {
    .styled-list{
        margin:0;
    }
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stats-card.yellow {
        padding-right: 50px;
    }

        .stats-card.yellow .patient-image {
            width: 35%;
        }

        .stats-card.yellow .stats-info {
            max-width: 70%;
        }
}

/* Medical departments section */
.medical-departments {
    padding: 60px 0;
    background-color: #FAFBFE;
    position: relative;
}

.departments-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.medical-departments h2 {
    font-size: 36px;
    color: #042D59;
    font-weight: 700;
    margin-bottom: 40px;
}

.departments-content {
    display: flex;
    gap: 30px;
    position: relative;
    margin-bottom: 30px;
}

.departments-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
    .departments-cards a{
        padding:0!important
    }

    .department-card {
        background-color: #FFFFFF;
        border-radius: 5px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        height: 100%;
        z-index: 2;
        position: relative
    }

.icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background-color: rgba(37, 184, 197, 0.1);
    border-radius: 8px;
    padding: 10px;
    flex-shrink: 0;
}

    .icon-wrapper img {
        width: 14px;
        height: 14px;
        filter: invert(62%) sepia(75%) saturate(455%) hue-rotate(140deg) brightness(92%) contrast(91%);
    }

.dept-content {
    display: flex;
    flex-direction: column;
}

.dept-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.dept-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #25B8C5;
    margin: 0;
}

.dept-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.departments-image {
    flex: 0 0 20%;
    position: relative;
}

    .departments-image img {
        width: 100%;
        height: 100%;
        transform: scale(1.3) translate(-1.5rem, -1rem);
        object-fit: cover;
    }

    .departments-image::before {
        content: '';
        position: absolute;
        top: -12px;
        right: -12px;
        width: 120px;
        height: 120px;
        background-color: #25B8C5;
        z-index: -1;
        border-radius: 15px;
    }

.service-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 8px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

    .service-tag::before {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #FFC636;
        border-radius: 50%;
        margin-right: 8px;
        display: inline-block;
    }

    .service-tag span {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #25B8C5;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}

    .view-all-btn::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #25B8C5;
    }

    .view-all-btn span {
        display: inline-block;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .view-all-btn:hover {
        color: #042D59;
    }

        .view-all-btn:hover::after {
            background-color: #042D59;
        }

        .view-all-btn:hover span {
            transform: translateX(5px);
        }

    .view-all-btn:hover {
        color: #042D59;
    }

        .view-all-btn:hover::after {
            background-color: #042D59;
        }

        .view-all-btn:hover span {
            transform: translateX(5px);
        }

@media (max-width: 1024px) {
    .departments-content {
        flex-direction: column;
    }

    .departments-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .departments-image {
        height: 400px;
    }

        .departments-image::before {
            top: -8px;
            right: -8px;
            width: 80px;
            height: 80px;
        }
}

@media (max-width: 768px) {
    .medical-departments {
        padding: 40px 0;
    }

        .medical-departments h2 {
            font-size: 28px;
            margin-bottom: 30px;
        }

    .departments-cards {
        grid-template-columns: 1fr;
    }

    .departments-image {
        height: 300px;
    }
}

/* Featured doctors section */
.featured-doctors {
    padding: 40px 0;
    background: linear-gradient(115deg, #042d59, #010912);
    position: relative;
}

.doctors-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

    .section-header::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -15px;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }

.featured-doctors h2 {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
}

.featured-doctors .view-all-btn {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
}

    .featured-doctors .view-all-btn::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #FFFFFF;
    }

    .featured-doctors .view-all-btn span {
        display: inline-block;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .featured-doctors .view-all-btn:hover span {
        transform: translateX(5px);
    }

.featured-doctors .doctors-cards {
    display: flex;
    margin-bottom: 20px;
    padding: 30px 0;
    flex-wrap: nowrap;
}

.featured-doctors .doctor-card {
    position: relative;
    overflow: visible;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

    .featured-doctors  .doctor-card:hover img {
        transition: all 0.3s ease;
        transform: translateY(-10px);
    }

.featured-doctors .doctor-image {
    width: 100%;
    height: 240px;
    position: relative;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -20%;
    transition: all 0.4s ease-in-out;
}

    .featured-doctors .doctor-image img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center top;
        position: relative;
        z-index: 2;
        transition: transform 0.4s ease;
    }

.featured-doctors .doctor-card:hover .featured-doctors .doctor-image img {
    transform: translateX(-20px);
}

.featured-doctors .doctor-image::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #3fb5c3;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 1;
}

.featured-doctors .doctor-info {
    padding: 20px;
    color: #FFFFFF;
    background: radial-gradient(circle, rgba(60, 69, 79, 1) 0, rgba(26, 36, 50, 1) 100%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 2px solid rgba(60, 69, 79, .506);
}

    .featured-doctors .doctor-info h3 {
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        color: #25B8C5;
    }

    .featured-doctors .doctor-info h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: #FFFFFF;
    }

.specialty, .hospital {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 12px;
}

    .specialty:last-child, .hospital:last-child {
        margin-bottom: 0;
    }

.icons {
    margin-right: 10px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
 

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

        .section-header::after {
            bottom: -10px;
        }

    .featured-doctors .view-all-btn {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .featured-doctors {
        padding: 30px 0!important;
    }

        .featured-doctors h2 {
            font-size: 24px;
        }

   
}

/* Second opinion section */
.second-opinion {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .second-opinion::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(37, 184, 197, 0.1);
        border-radius: 50%;
        top: -150px;
        right: -150px;
    }

    .second-opinion h3 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 24px;
        color: #25B8C5;
        font-weight: 600;
        position: relative;
    }

    .second-opinion form {
        margin: 0 auto;
        background: linear-gradient(112deg, #edf6ff, #baddff);
        ;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        position: relative;
    }

.form-row {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #25B8C5;
    }

.custom-select-container {
    position: relative;
}

.custom-select {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    background-color: #FFFFFF;
}

    .custom-select input {
        width: 100%;
        padding: 12px 15px;
        border: none;
        background: transparent;
        outline: none;
        cursor: pointer;
        font-size: 14px;
    }

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #666;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.select-option {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

    .select-option:hover {
        background-color: #F5F5F5;
    }

.phone-input-group .iti {
    width: 100%;
}

.gender-row {
    margin-bottom: 15px;
}

.gender-group {
    flex: 0 0 auto;
    margin-right: 20px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border: 2px solid #E6E6E6;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #25B8C5;
    border-color: #25B8C5;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
}

.file-upload-container {
    width: 100%;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    background-color: #F8F8F8;
}

.upload-text {
    font-size: 14px;
    color: #666;
}

.upload-status {
    font-size: 14px;
    color: #999;
}

.file-input {
    display: none;
}

.second-opinion button {
    background-color: #25B8C5;
    color: #FFFFFF;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 16px;
}

    .second-opinion button:hover {
        background-color: #1DA2AE;
    }

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .second-opinion form {
        padding: 20px;
    }

    .gender-group {
        margin-bottom: 10px;
    }
}

/* Footer */
footer {
    background-color: #F7FBFF;
    padding: 60px 0 30px;
    color: var(--secondary-color);
    border-top: 1px solid rgba(4, 45, 89, 0.05);
}

/* Footer Top: Logo, Nav, Contact/Social */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(4, 45, 89, 0.1);
}

.footer-logo {
    flex: 0 0 180px;
    align-self: flex-start;
}

    .footer-logo img {
        max-width: 100%;
        height: auto;
    }

.footer-nav-container {
    flex: 1;
    min-width: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-nav ul li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

.nav-dot {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
}

.footer-nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .footer-nav ul li a:hover {
        color: var(--primary-color);
    }

/* Footer Contact & Social Side */
.footer-contact-social {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h4,
.social-header h4,
.how-to-reach h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.social-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-details,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(37, 184, 197, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.contact-item a,
.contact-item address {
    color: var(--secondary-color);
    text-decoration: none;
    font-style: normal;
    font-size: 14px;
    line-height: 1.4;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    transition: transform 0.3s ease;
}

    .social-link:hover {
        transform: translateY(-2px);
    }

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-link i {
    font-size: 16px;
    color: white;
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
}

.social-handle {
    font-size: 12px;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* Social link colors */
.social-link.instagram .icon-circle {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.facebook .icon-circle {
    background-color: #1877F2;
}

.social-link.youtube .icon-circle {
    background-color: #FF0000;
}

.social-link.linkedin .icon-circle {
    background-color: #0A66C2;
}

/* How to reach / Map Placeholder */
.how-to-reach {
    margin-top: 10px;
}

.map-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(4, 45, 89, 0.1);
}

/* Footer bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
}

.bottom-left {
    flex: 1;
    min-width: 300px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 15px;
}

    .legal-links a {
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 12px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        line-height: 1.5;
    }

        .legal-links a:hover {
            opacity: 1;
            color: var(--primary-color);
        }

.copyright {
    color: var(--secondary-color);
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
}

.bottom-right {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.contact-phone-button .phone-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .contact-phone-button .phone-btn i {
        margin-right: 8px;
    }

    .contact-phone-button .phone-btn:hover {
        background-color: var(--primary-hover-color);
    }

.app-download-section {
    align-self: flex-end;
}

.app-links-text {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

    .app-links-text i {
        margin-right: 8px;
        font-size: 16px;
        color: var(--primary-color);
    }

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-button img {
    height: 35px;
    width: auto;
    transition: opacity 0.3s ease;
}

    .app-button img:hover {
        opacity: 0.8;
    }

/* Responsive adjustments for Footer */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        flex: 0 0 auto;
        margin-bottom: 30px;
    }

    .footer-nav-container {
        width: 100%;
    }

    .footer-nav {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        justify-items: center;
    }

        .footer-nav ul {
            text-align: left;
        }

    .footer-contact-social {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        align-items: center;
    }

    .contact-info,
    .footer-social,
    .how-to-reach {
        width: 100%;
    }

    .contact-details,
    .social-links {
        align-items: center;
    }

    .contact-item,
    .social-link {
        justify-content: center;
        width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bottom-left,
    .bottom-right {
        width: 100%;
        align-items: center;
        flex: 0 0 auto;
    }

    .bottom-right {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .legal-links {
        justify-content: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .footer-contact-social {
        gap: 25px;
    }

    .legal-links a {
        font-size: 11px;
    }

    .copyright {
        font-size: 11px;
    }

    .contact-phone-button .phone-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .app-links-text {
        font-size: 12px;
        justify-content: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-button img {
        height: 30px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #25B8C5;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    margin-left: auto;
}

.hamburger {
    width: 20px;
    height: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: left center;
    }

        .hamburger span:nth-child(1) {
            transform-origin: top left;
        }

        .hamburger span:nth-child(3) {
            transform-origin: bottom left;
        }

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    width: 110%;
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    transform: translateX(-100%);
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    width: 110%;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: transparent linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #25b8c5 35%);
        padding: 24px 20px;
        visibility: hidden;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 990;
        height: 100vh;
        overflow-y: auto;
    }

        nav.nav-open {
            transform: translateY(90vh);
            visibility: visible;
        }

    .nav-menu {
        flex-direction: column;
        justify-content: center;
        padding: 15px;
    }

        .nav-menu li {
            margin: 0;
            text-align: left;
            border-bottom: none;
        }

            .nav-menu li a {
                color: white;
                font-size: 23px;
                display: flex;
                align-items: center;
            }

    .menu-dot {
        color: white;
        margin-right: 8px;
    }

    .contact-btn {
        background: white;
        color: #25B8C5;
        border-radius: 30px;
        margin-top: 15px;
        text-align: center;
        display: inline-block;
        padding: 12px 24px;
    }
}

/* Remove overlay */
.overlay {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}



/*
header:not(.scrolled) .contact-btn {
    background-color: #fff;
    color: #25B8C5;
}*/

/* Tooltip tarzı etiketi ekleyelim */
.featured-doctors .doctor-card .tooltip {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #25B8C5;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    pointer-events: none;
}

.featured-doctors .doctor-card:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Medical Technology Section */
.medical-tech {
    padding: 60px 15px;
    max-width: 1320px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #042D59;
    margin-bottom: 25px;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.tech-wrapper {
    display: flex;
    background: linear-gradient(112deg, #edf6ff, #baddff);
    border-radius: 40px;
    overflow: hidden;
    justify-content: space-between;
    padding: 40px;
}

.tech-left {
    width: 49%;
    background-color: #FFFFFF;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .tech-left img {
        max-width: 100%;
        height: auto;
    }

.tech-right {
    width: 49%;
    background-color: #031b34;
    border-radius: 40px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

    .tech-right h3 {
        font-size: 42px;
        line-height: 1.2;
        font-weight: 700;
        color: #fff;
        margin-bottom: 30px;
        font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

.tech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: #031b34;
    font-weight: 700;
    width: 270px;
    padding: 15px 25px;
    border-radius: 40px;
    text-decoration: none;
    gap: 10px;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    border-radius: 60px;
    position: absolute;
    background: var(--white);
    z-index: 2;
    bottom: 1rem;
    right: -2rem;
}

    .tech-btn:hover {
        background-color: #25B8C5;
        color: white;
    }

    .tech-btn svg {
        transition: transform 0.3s ease;
    }

    .tech-btn:hover svg {
        transform: translateX(5px);
    }

.tech-right-img {
    position: absolute;
    right: 0;
    bottom: 45px;
    max-height: 100%;
    z-index: 1;
}

@media (max-width: 991px) {
    .tech-wrapper {
        flex-direction: column;
        padding:20px;
    }

    .tech-left, .tech-right {
        width: 100%;
        border-radius: 0;
    }

    .tech-left {
        border-radius: 24px 24px 0 0;
    }

    .tech-right {
        border-radius: 0 0 24px 24px;
        padding: 40px 30px;
    }

        .tech-right h3 {
            font-size: 32px;
            margin-bottom: 30px;
            max-width: 60%;
        }

    .tech-right-img {
        max-height: 80%;
    }
}

@media (max-width: 767px) {
    .medical-tech {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .tech-left {
        padding: 30px;
    }

    .tech-right {
        padding: 30px;
    }

        .tech-right h3 {
            font-size: 28px;
            margin-bottom: 20px;
            max-width: 100%;
        }

    .tech-btn {
        padding: 12px 24px;
        font-size: 14px;
        bottom:-1rem;
        right:0.5rem;
    }

    .tech-right-img {
        opacity: 0.3;
    }
}

/* Treatment methods section */
.treatment-methods {
    padding: 60px 0;
    margin: 40px 0;
}

.treatment-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}
.form-container , .footer-container{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.treatment-title {
    font-size: 36px;
    font-weight: 700;
    color: #042D59;
    text-align: right;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 25px;
}

.treatment-content {
    position: relative;
    background: linear-gradient(103deg, #042d59, #03468e);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    border-radius: 20px;
}

.doctor-image {
    flex: 0 0 35%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

    .doctor-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

.treatment-list {
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-start;
    padding: 40px 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.treatment-column {
    margin-right: 40px;
    flex: 0 0 auto;
}

.treatment-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.treatment-arrow {
    margin-right: 10px;
    flex-shrink: 0;
}

/* Large vertical MEDICANA text in the background */
.treatment-content::before {
    content: "MEDICANA";
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    color: rgba(255, 255, 255, 0.05);
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 10px;
    z-index: 1;
}

/* Light blue V shape on the left */
.treatment-content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background-color: #25B8C5;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 0;
}

@media (max-width: 1200px) {
    .treatment-column {
        margin-right: 30px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 30px 15px !important;
    }

    .hero-contact-slider {
        gap: 0;
    }

    .medicana-tech-card {
        flex-direction: column;
    }

    .medicana-tech-card-image {
        width: 100% !important;
    }

    .medicana-tech-card-content {
        width: 100% !important;
    }

    .treatment-title {
        text-align: left;
    }

    .treatment-content {
        flex-direction: column;
        min-height: auto;
    }

    .doctor-image {
        flex: 0 0 250px;
        width: 100%;
    }

    .treatment-list {
        flex: 1;
        padding: 30px;
    }

    .treatment-column {
        margin-right: 20px;
        margin-bottom: 20px;
        flex: 0 0 45%;
    }

    .treatment-content::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .treatment-methods {
        padding: 40px 0;
    }

    .treatment-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .treatment-list {
        flex-direction: column;
    }

    .treatment-column {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .treatment-item {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .doctor-image {
        flex: 0 0 200px;
    }
}

@font-face {
    font-family: 'Roobert';
    src: url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Regular.woff2') format('woff2'), url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert';
    src: url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Medium.woff2') format('woff2'), url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roobert';
    src: url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Bold.woff2') format('woff2'), url('https://cdn.jsdelivr.net/npm/@roobert/roobert-font@1.0.1/fonts/Roobert-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Custom Select Stilleri */
.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px; /* Input içeride olduğu için padding buraya */
    box-sizing: border-box; /* Padding hesaba katılsın */
}

    .custom-select input {
        width: calc(100% - 25px); /* Ok için yer bırak */
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0; /* Padding'i ana dive taşıdık */
        pointer-events: none; /* Input'a tıklamayı engelle */
        color: #333; /* Seçili metin rengi */
        font-size: 1rem;
    }

        .custom-select input::placeholder {
            color: #999;
        }

.select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    color: #555;
    pointer-events: none; /* Oka tıklamayı engelle */
}

    .select-arrow.open {
        transform: translateY(-50%) rotate(180deg);
    }

.select-options {
    display: none;
    position: absolute;
    top: calc(100% + 2px); /* Input ile arasında boşluk */
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 101; /* Diğer elemanların üzerinde */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .select-options.active {
        display: block;
    }

.select-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
    font-size: 0.95rem;
}

    .select-option:hover {
        background-color: #f0f0f0;
    }

/* intl-tel-input düzeltmesi */
.phone-input-group .iti {
    width: 100%;
    display: block;
}

.phone-input-group .iti__country-list {
    max-width: 100%; /* Taşmayı önle */
    width: auto !important; /* Kütüphanenin stilini ez */
    min-width: 280px; /* Minimum genişlik */
    overflow-x: hidden; /* Yatay scrollbar'ı gizle */
    max-height: 200px;
    position: absolute;
    z-index: 102; /* Select options'ın da üzerinde */
}

/* Swiper Slider Stilleri */
.featured-doctors .swiper-container {
    width: 100%;
    padding: 0; /* Oklar için yanlarda boşluk bırak */
    padding-bottom: 40px; /* Pagination için boşluk */
    position: relative;
    overflow: hidden; /* TAŞMAYI ENGELLE */
    box-sizing: border-box;
}

.featured-doctors .swiper-slide {
    height: auto; /* İçeriğe göre yükseklik */
    justify-content: center; /* İçeriğin yatayda ortalanması için */
    align-items: stretch; /* Kartların aynı yüksekliği almasını sağla */
    box-sizing: border-box; /* Padding/border hesaba katılsın */
}

    /* Slider içindeki kartın tam genişliği almasını sağla (önemli!) */
    .featured-doctors .swiper-slide .doctor-card {
        width: 100%;
        height: 100%; /* align-items: stretch ile çalışır */
        display: flex;
        flex-direction: column;
    }

/* Custom Swiper Navigasyon Butonları */
.featured-doctors .swiper-button-next,
.featured-doctors .swiper-button-prev {
    display:none!important;
    position: absolute;
    top: 23%;
    transform: translateY(-50%);
    width: 40px; /* Genişlik */
    height: 40px; /* Yükseklik */
    background-color: #fff; /* Arka plan rengi */
    border-radius: 50%; /* Daire şekli */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Hafif gölge */
    color: #25b8c5; /* Ok rengi (tema rengi) */
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

    .featured-doctors .swiper-button-next:hover,
    .featured-doctors .swiper-button-prev:hover {
        background-color: #25b8c5; /* Hover arka plan rengi */
        color: #fff; /* Hover ok rengi */
    }

/* Okları konteyner dışına taşıma */
.featured-doctors .swiper-button-prev {
    left: 0px;
}

.featured-doctors .swiper-button-next {
    right: 0px;
}

    /* Swiper'ın varsayılan ok ikonlarını ::after ile değiştir */
    .featured-doctors .swiper-button-next::after,
    .featured-doctors .swiper-button-prev::after {
        font-family: 'Font Awesome 6 Free'; /* Font Awesome kullan */
        font-weight: 900; /* Solid ikonlar için */
        font-size: 16px; /* İkon boyutu */
    }

.featured-doctors .swiper-button-prev::after {
    content: '\f053'; /* Font Awesome sol ok ikonu */
}

.featured-doctors .swiper-button-next::after {
    content: '\f054'; /* Font Awesome sağ ok ikonu */
}

.featured-doctors .swiper-pagination {
    bottom: 10px; /* Pagination konumu */
}

.featured-doctors .swiper-pagination-bullet {
    background: #25b8c5; /* Tema rengi */
    opacity: 0.5;
}

.featured-doctors .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Mobil Görünümde Okları Ayarla */
@media (max-width: 767px) {
    .featured-doctors .swiper-container {
        padding: 0 25px; /* Mobil için yan boşlukları azalt */
        padding-bottom: 40px;
    }
    .doctors-container .section-header
    {
        flex-direction:unset;
        align-items:center;
    }
    .featured-doctors .swiper-button-next,
    .featured-doctors .swiper-button-prev {
        top: 23%;
    }

        .featured-doctors .swiper-button-next::after,
        .featured-doctors .swiper-button-prev::after {
        }

    .featured-doctors .swiper-button-prev {
        left: 25px;
    }

    .featured-doctors .swiper-button-next {
        right: 25px;
    }
}

.medicana-tech-section .section-title {
    margin: 0;
}

.medicana-tech-section {
    padding: 60px 0;
}

#medical-tech .medical-tech-card-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 2;
    gap: 20px;
    background-color: #f7fcfc;
    box-shadow: 0 0 15px 0 rgba(194, 193, 193, 0.2);
    margin: 40px 0;
    border-radius: 10px;
}




#medical-tech .medical-tech-card-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

    #medical-tech .medical-tech-card-col h6 {
        font-size: 24px;
        font-weight: 600;
        color: #042D59;
    }

    #medical-tech .medical-tech-card-col p {
        font-size: 16px;
        font-weight: 400;
        color: #042d5999;
    }
#medical-tech .card-type-4-wrapper figure .row{
    align-items:center
}
#medical-tech .card-type-4-wrapper figure {
    margin:0
}
    #medical-tech .card-type-4-wrapper  .img-wrapper
    {
        padding:15px 0
    }
   @media(min-width:991px){
    #medical-tech .medical-tech-card-col:nth-child(2n+1) .card-type-4-wrapper {
        direction: rtl
    }

    #medical-tech .medical-tech-card-col:nth-child(2n+1) figcaption p, #medical-tech .medical-tech-card-col:nth-child(2n+1) h6 {
        text-align: left
    }
   }
@media(max-width:991px) {

    #medical-tech .card-type-4-wrapper figure .row{
        margin:0
    }
    #medical-tech .medical-tech-card-col .card-type-4-wrapper .col-6 {
        width: 100% !important;
        padding: 15px !important;
    }
}



