/* videos */
/*
 * Video Section Styles
 * Bu dosya, video galerisi için gerekli stilleri içerir
 */

/* Video bölümü */
.thi-video-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video navigasyon */
.thi-video-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.thi-video-nav-item {
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-family: \'Playfair Display\', serif;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 600;
}

.thi-video-nav-item:hover {
    color: #749f74;
}

.thi-video-nav-item.active {
    color: #749f74;
}

.thi-video-nav-item::after,
.thi-video-nav-item::before {
    content: \'\';
    position: absolute;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #749f74;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.thi-video-nav-item::before {
    top: -11px;
}

.thi-video-nav-item::after {
    bottom: -11px;
}

.thi-video-nav-item.active::before,
.thi-video-nav-item.active::after {
    width: 100%;
}

/* Video içerik alanı */
.thi-video-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Ana video alanı */
.thi-main-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.thi-main-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.thi-main-video.changing iframe {
    opacity: 0;
    transform: translateY(30px);
}

/* Video playlist */
.thi-video-playlist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.thi-video-playlist.changing {
    opacity: 0;
    transform: translateY(30px);
}

/* Video playlist item */
.thi-playlist-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    border-left: 3px solid transparent;
}

.thi-playlist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thi-playlist-item.active {
    background: #f9f9f9;
    border-left-color: #749f74;
}

.thi-playlist-item.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.thi-playlist-thumbnail {
    width: 120px;
    height: 68px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.thi-playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thi-playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thi-playlist-title {
    font-size: 0.9rem;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

/* Scrollbar styling */
.thi-video-playlist::-webkit-scrollbar {
    width: 6px;
}

.thi-video-playlist::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thi-video-playlist::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.thi-video-playlist::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .thi-video-section {
        padding: 40px 20px;
    }
}

@media (max-width: 991px) {
    .thi-video-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thi-video-playlist {
        max-height: 300px;
    }
    
    .thi-main-video {
        padding-bottom: 52%; /* 16:9 aspect ratio için biraz daha küçük */
    }
}

@media (max-width: 767px) {
    .thi-video-section {
        padding: 30px 15px;
    }

    .thi-video-nav {
        flex-wrap: wrap;
        gap: 5px;
        padding: 5px 0;
    }
    
    .thi-video-nav-item {
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .thi-video-nav-item::before {
        top: -6px;
    }
    
    .thi-video-nav-item::after {
        bottom: -6px;
    }
    
    .thi-playlist-item {
        padding: 8px;
    }
    
    .thi-playlist-thumbnail {
        width: 90px;
        height: 50px;
    }
    
    .thi-playlist-title {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .thi-video-section {
        padding: 20px 10px;
    }
    
    .thi-video-nav {
        margin-bottom: 20px;
    }
    
    .thi-video-nav-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .thi-main-video {
        padding-bottom: 56.25%;
        margin-bottom: 15px;
    }
    
    .thi-video-content {
        gap: 15px;
    }
    
    .thi-video-playlist {
        max-height: 250px;
        gap: 10px;
    }
    
    .thi-playlist-thumbnail {
        width: 80px;
        height: 45px;
    }
    
    .thi-playlist-title {
        font-size: 0.8rem;
        margin: 0 0 2px 0;
    }
    
    .thi-playlist-item {
        gap: 10px;
    }
}

/* Yatay mobil cihazlar için özel düzenleme */
@media (max-height: 480px) and (orientation: landscape) {
    .thi-video-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 15px;
    }
    
    .thi-video-playlist {
        max-height: 200px;
    }
    
    .thi-playlist-item {
        padding: 5px;
    }
    
    .thi-playlist-thumbnail {
        width: 70px;
        height: 40px;
    }
}

/* Tablet için özel düzenleme */
@media (min-width: 768px) and (max-width: 991px) {
    .thi-video-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .thi-video-playlist {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        max-height: none;
        gap: 15px;
    }
    
    .thi-playlist-item {
        height: 100%;
    }
    
    .thi-playlist-thumbnail {
        width: 100%;
        height: 140px;
    }
    
    .thi-playlist-info {
        padding: 10px 0;
    }
} 

/* transplant */
/*
 * Transplant Slider Styles
 * Bu dosya, saç ekimi slider bölümü için gerekli stilleri içerir
 */

/* Custom Colors */
:root {
    --primary-green: #749f74;  /* Ana yeşil renk - clinic.css\'de kullanılan */
    --light-green: #92bd92;    /* Açık yeşil - navbar hover\'da kullanılan */
    --hover-green: #658a65;    /* Hover durumu için koyu yeşil */
    --leaf-green: #7AA974;     /* Header dots\'da kullanılan yeşil */
    --transparent-green: rgba(146, 189, 146, 0.8); /* Buton arka planı için yarı saydam yeşil */
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #fff;
    --bg-light: #f5f5f5;
    --border-light: #eee;
}

/* Side Indicators */
.thi-efe-side-indicators {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.thi-efe-side-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thi-efe-side-indicator.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

.thi-efe-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 5;
}

.thi-efe-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thi-efe-carousel-dot.active {
    background-color: var(--text-light);
    transform: scale(1.2);
}

/* Heading Navigation */
.thi-efe-heading-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

/* Layout */
.thi-efe-drozdemir-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.thi-efe-drozdemir-carousel {
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.thi-efe-carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.thi-efe-carousel-content {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 450px;
    max-width: 1200px;
    margin: 0 auto;
    
}

.thi-efe-carousel-content:active {
    
}

.thi-efe-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.thi-efe-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.thi-efe-carousel-text {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: \'Playfair Display\', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;

}

.thi-efe-slide-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.thi-efe-slide-description {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thi-efe-carousel-image {
    flex: 1;
    padding: 0 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thi-efe-carousel-image img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.thi-efe-carousel-prev, 
.thi-efe-carousel-next {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thi-efe-carousel-prev:hover, 
.thi-efe-carousel-next:hover {
    color: var(--hover-green);
    transform: scale(1.1);
}

.thi-efe-slide-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    margin-top: 0.5rem;
    width: fit-content;
}

.thi-efe-slide-button:hover {
    background-color: var(--transparent-green);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .thi-efe-drozdemir-container {
        padding: 1.5rem;
    }
    
    .thi-efe-carousel-content {
        height: 400px;
    }
    
    .thi-efe-slide-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .thi-efe-carousel-content {
        height: auto;
        min-height: 600px;
    }
    
    .thi-efe-carousel-slide {
        flex-direction: column;
    }
    
    .thi-efe-carousel-text {
        order: 2;
        text-align: center;
        padding: 1rem 0.5rem;
    }
    
    .thi-efe-carousel-image {
        order: 1;
        padding: 0.5rem;
    }
    
    .thi-efe-slide-heading {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .thi-efe-slide-description {
        font-size: 0.9rem;
    }
    
    .thi-efe-slide-button {
        margin: 0.5rem auto 0;
    }
    
    .thi-efe-side-indicators {
        display: none;
    }
    
    .thi-efe-carousel-dots {
        display: none;
    }
    
    .thi-efe-heading-nav {
        justify-content: center;
        position: relative;
    }
    
    .thi-efe-carousel-prev {
        position: absolute;
        left: 0;
    }
    
    .thi-efe-carousel-next {
        position: absolute;
        right: 0;
    }
}

@media (max-width: 480px) {
    .thi-efe-drozdemir-container {
        padding: 1rem;
    }
    
    .thi-efe-carousel-content {
        min-height: 500px;
    }
    
    .thi-efe-carousel-image img {
        max-height: 220px;
    }
    
    .thi-efe-slide-heading {
        font-size: 1.2rem;
    }
    
    .thi-efe-slide-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .thi-efe-slide-button {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Transplant slider bölümü */
.thi-transplant-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    overflow: hidden;
    background-color: var(--text-light);
}

/* Slider içeriği */
.thi-transplant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Slider metin alanı */
.thi-transplant-text {
    padding: 0 20px;
}

.thi-transplant-title {
    font-family: \'Playfair Display\', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
}

.thi-transplant-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thi-discover-btn {
    display: inline-block;
    background-color: var(--transparent-green);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.thi-discover-btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Slider navigasyon */
.thi-transplant-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
    z-index: 10;
}

.thi-transplant-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--leaf-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thi-transplant-dot.active {
    background-color: var(--leaf-green);
    transform: scale(1.2);
}

/* Slider görseli */
.thi-transplant-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thi-transplant-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Slider kontrolleri */
.thi-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.thi-slider-control {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    padding: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thi-slider-control:hover {
    opacity: 1;
    color: var(--hover-green);
    transform: scale(1.1);
}

/* Slider animasyonları */
.thi-transplant-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.thi-transplant-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.thi-transplant-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

/* dual */
  .thi-dual-section {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        margin: 10rem 0 6rem 0;
    }
    
    .thi-dual-left {
        width: 50%;
        height: 100%;
        background-color: #fbf6e8;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .thi-dual-right {
        width: 50%;
        height: 100%;
        background-color: #353740;
        position: relative;
        overflow: visible;
    }
    
    .slide-container {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .slide {
        position: absolute;
        bottom: 0;
        left: 25.5%;
        width: 80%;
        height: 730px;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: none;
    }
    
    .slide.active {
        opacity: 1;
        display: block;
    }
    
    /* Before/After İçerik Stilleri */
    .thi-before-after-content {
        text-align: center;
        padding: 20px 0;
    }
    
    .thi-ba-title {
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 0.9;
    }
    
    .before-text {
        font-family: \"Times New Roman\", serif;
        font-size: 75px;
        line-height: 40px;
        color: #565656;
        text-transform: uppercase;
        text-align: center;
        font-weight: 700;
    }
    
    .after-text {
        font-family: \"Times New Roman\", serif;
        font-size: 120px;
        line-height: 120px;
        color: #779f7d;
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .thi-ba-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .thi-ba-subtitle h2 {
      
        text-align: center;
        text-transform: uppercase;
        font-size: 19px;
        color: #565656;
    }
    
    .nav-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        color: #749f74;
        transition: transform 0.3s ease;
    }
    
    .nav-btn i {
        font-size: 24px;
        color: inherit;
        display: inline-block;
    }
    
    .nav-btn:hover {
        transform: scale(1.1);
    }
    
    .thi-discover-btn {
        display: inline-block;
        background-color: #749f74;
        color: white;
        text-decoration: none;
        padding: 8px 30px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    
    .thi-discover-btn:hover {
        background-color: #658a65;
        transform: translateY(-2px);
    }
    
    /* Responsive Styles */
    @media screen and (max-width: 768px) {
        .thi-dual-section {
            flex-direction: column;
            height: auto;
            margin: 4rem 0;
        }
		.thi-efe-drozdemir-carousel{
			display:none;
		}
        .thi-dual-left,
        .thi-dual-right {
            width: 100%;
            min-height: 250px;
        }
    
        .slide-container {
            height: 300px;
            padding: 0;
        }
    
        .slide {
            position: relative;
            left: 0;
            height: 100%;
            width: 100%;
            object-fit: contain;
            margin: 0 auto;
        }
    
        .before-text {
            font-size: 50px;
            line-height: 35px;
        }
    
        .after-text {
            font-size: 80px;
            line-height: 80px;
        }
    
        .thi-ba-subtitle h2 {
            font-size: 16px;
        }

        .thi-discover-btn {
            padding: 8px 25px;
            font-size: 13px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .thi-dual-section {
            margin: 2rem 0;
        }

        .thi-dual-left,
        .thi-dual-right {
            min-height: 200px;
        }
    
        .slide-container {
            height: 250px;
        }

        .before-text {
            font-size: 40px;
            line-height: 30px;
        }
    
        .after-text {
            font-size: 65px;
            line-height: 65px;
        }
    
        .thi-ba-subtitle h2 {
            font-size: 14px;
        }

        .thi-ba-subtitle {
            gap: 10px;
        }

        .nav-btn i {
            font-size: 20px;
        }

        .thi-discover-btn {
            padding: 7px 20px;
            font-size: 12px;
        }
    } 

/* services */
.thi-services-section {
    padding-bottom: 5rem;
    background-color: #fff;
}

.thi-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.thi-services-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #658a65;
}

.thi-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.thi-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.thi-service-card {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
    position: relative;
    display: block;
}

/* Üstteki 3 kart */
.thi-service-card:nth-child(-n+3) {
    grid-column: span 2;
}

/* Alttaki 2 kart */
.thi-service-card:nth-child(n+4) {
    grid-column: span 3;
}

.thi-service-card:hover {
    transform: translateY(-5px);
}

.thi-service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.thi-service-image::after {
    content: \'\';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;

    pointer-events: none;
    transition: all 0.5s ease;
}

.thi-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Üstteki kartlar için yükseklik */
.thi-service-card:nth-child(-n+3) .thi-service-image {
    height: 500px;
}

/* Alttaki kartlar için yükseklik */
.thi-service-card:nth-child(n+4) .thi-service-image {
    height: 300px;
}

.thi-service-card:hover .thi-service-image img {
    transform: scale(1.05);
}

.thi-service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(146, 189, 146, 0.8);
    padding: 1rem 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.thi-service-tag:hover {

    transition: all 0.5s ease;
    background-color: rgba(101, 138, 101, 0.8);

}

.thi-service-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 1;
    transition: all 0.5s ease;
}

.thi-service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: all 0.5s ease;
}

.thi-service-line {
    display: block;
    width: 0;
    height: 1px;
    background-color: #fff;
    margin: 0.5rem 0;
    transition: all 1s ease;
    opacity: 0;
}

.thi-service-description {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Hover Effects */
.thi-service-card:hover .thi-service-content {
    transform: translateY(-10px);
}

.thi-service-card:hover .thi-service-line {
    width: 100%;
    opacity: 1;
}

.thi-service-card:hover .thi-service-description {
    opacity: 1;
    height: auto;
    transform: translateY(0);
    margin-top: 0.3rem;
}

.thi-service-card:hover .thi-service-image::after {
    opacity: 0.9;
    height: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .thi-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thi-service-card:nth-child(-n+3) {
        grid-column: span 1;
    }

    .thi-service-card:nth-child(n+4) {
        grid-column: span 1;
    }

    /* 1, 2 ve 3. kartlar için yüksekliği 500px */
    .thi-service-card:nth-child(-n+3) .thi-service-image {
        height: 600px;
	
    }

    /* 4. ve sonraki kartlar için yüksekliği 300px */
    .thi-service-card:nth-child(n+4) .thi-service-image {
        height: 300px;
    }
}
@media screen and (max-width: 768px) {
    .thi-services-section {
        padding-bottom: 3rem;
    }

    .thi-services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .thi-service-content {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .thi-service-title {
        font-size: 1.5rem;
    }

    .thi-service-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    .thi-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thi-services-title {
        font-size: 1.8rem;
    }

    .thi-service-image {
        height: 250px;
    }
} 

