/* global css */
/* header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* GILROY FONT AİLESİ */
body {
    
    font-family: 'Gilroy', Arial, sans-serif;
    font-weight: 400;
    /* Varsayılan ağırlık */
    line-height: 1.6;
    color: #333;
}


/* BAŞLIKLAR */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    text-decoration:none;
    /* Bold */
    margin-top: 0;
    line-height: 1.2;
    color: #111;
}
a{
    text-decoration:none!important;
}

h1 {
    font-size: 2.5rem;
    /* 40px */
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    /* 32px */
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    /* 28px */
    font-weight: 600;
}

/* PARAGRAF VE METİNLER */
p {
    font-weight: 400;
    font-size: 1rem;
    /* 16px */
    margin-bottom: 1.5em;
}

/* BUTONLAR */
button,
.button {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ÖZEL FONT AĞIRLIKLARI */
.light {
    font-weight: 300;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

/* MOBILE TİPOGRAFİ */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
    .thumb-cont-area{
        margin:20px;
    }
}

/* Header Stili */
header {
    background-color: #fff;
    color: #333;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 60px 0;

    margin: 0 20px 0 20px;
}

header .logo img {
    width: 120px;
    /* Logo boyutunu ayarlayabilirsin */
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: auto;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0A7B79;
    /* Hover efekti */
}

.header-right {
    display: flex;
    align-items: center;
}

.signup-btn {
    background-color: #f7f7f7;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    margin-right: 20px;
}

.signup-btn:hover {
    background-color: #0A7B79;
    color: #fff;
}

/* Hamburger Menü Simgesi */
.menu-toggle {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    /* Genişlik ayarı */
    height: 20px;
    /* Yükseklik ayarı */
}

.menu-toggle span {
    background-color: #333;
    height: 3px;
    /* Çizgilerin kalınlığı */
    width: 100%;
    border-radius: 2px;
}

.menu-icon {
    width: 30px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #333;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .header-right {
        margin-top: 10px;
    }

    .menu-icon {
        display: block;
    }
}

/* Genel stil */
.about-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #f9f9f9;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

.about-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-images {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.image-card {
    position: relative;
    flex: 1;
    margin-left: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ddd;
}

.image-card p {
    padding: 15px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
}

.read-more {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
    color: #0A7B79;
    text-decoration: none;
}

.read-more:hover {
    color: #e67e22;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        flex-direction: column;
        margin-top: 20px;
    }

    .image-card {
        margin-bottom: 20px;
    }
}

.baskan-mesaji {
    display: flex;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 50px;
    max-width: 1000px;
}

.baskan-mesaj-area h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.baskan-mesaj-area h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.baskan-mesaj-area p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}


.slider-container-logos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.slider-logo {
    display: flex;
    justify-content: center;
    width: 80%;
    overflow: hidden;
}

.slider-item-logo {
    opacity: 0.7;
    transition: opacity 1s ease;
    width: 100%;
    text-align: center;
}

.slider-item-logo img {
    max-width: 100%;
    max-height: 150px;
}

.slider-item-logo.active {
    opacity: 1;
}

.logos-baslik {
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;

}


.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 123, 121, 0.72);
    /* Yeşil filigran */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.overlay h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.overlay p {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 300;
}

button {
    
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    ;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
}


.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

.footer {

    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #ddd;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.footer-buttons {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;

    cursor: pointer;
    font-size: 16px;
    margin: 0 10px;

}

.footer-button-giris {
    border-radius: 50px;
    color: #000;
    border: 1px solid #000;
    width: 20%;
    transition: background-color 0.3s;
}

.footer-button-uye-ol {
    border-radius: 50px;
    color: #fff;
    background-color: #0A7B79;
    border: 1px solid #000;
    width: 20%;
}


.footer-socials {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.social-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}
.social-icon:hover {
    fill: #0A7B79; /* Hover rengi */
    transform: scale(1.1);
}

.footer-rights {
    font-size: 14px;
    color: #777;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid;
    padding-top: 25px;

}

.tabs-section {
    display: flex;
    max-height: 100vh;
    gap: 40px;
    max-width: 1400px;
    background-color: #f8f8f8;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding:30px;
}

.left-panel {

    background: url('inovder-image.jpg') center/cover no-repeat;

    max-width: 30%;
    max-height: 100vh;
}

.left-panel img {
    width: 100%;
    border-radius: 40px;
}

.right-panel {
    flex: 2;
    
    max-height: 50vh;

}

.tabss {
    display: flex;
    gap:25px;

}

.tab {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 300;
    background: #eee;
    border: none;
    border-radius: 50px;
    margin-right: 5px;
}

.tab.active {
    background: #0A7B79;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;




}

.tab-content.active {
    display: block;
}

/* üye bölümü */


.header-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 123, 121, 0.72);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 36px;
}

.team-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.person-card {
    width: 180px;
    flex: 0 0 calc(25% - 1rem); 
    box-sizing: border-box;
    margin: 10px;
    padding: 20px;
    height: 450px;
    border-radius: 35px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.person-card img{
    filter: grayscale(100%);
}
.person-card:hover img{
    filter: grayscale(0%);
}

.person-card:hover {
    background-color: #0A7B79;

}

.person-card:hover h2 {
    color: #fff;
}

.person-card:hover p {
    color: #fff;
}

.baskan-top {
    width: 320px;
    margin: 10px;
    padding: 20px;

    border-radius: 35px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.baskan-top img {
    max-width: 280px;
}

.baskan-top:hover {
    background-color: #0A7B79;

}

.baskan-top:hover h2 {
    color: #fff;
}

.baskan-top:hover p {
    color: #fff;
}

.person-card h2 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.person-card p {
    margin-top: 5px;
    color: #777;
}

.top-card {
    margin-bottom: 80px;
}

.top-card img {
    margin-bottom: 30px;
    max-width: 300px;
}

.person-cards-row {
    display: flex;
    flex-wrap: wrap;
  gap: 1rem;
    justify-content: center;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 80%;
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}

/* inover-uyeleri */
.logos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

    border-radius: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.logo-card:hover {
    transform: scale(1.1);
    border-color: #007bff;
}

.logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 2px solid #ddd;
    margin-bottom: 10px;
    border-radius: 100%;
}

.logo-card p {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 0;
}

/* tüzük */
.sayfa-icerik p {
    max-width: 1200px;
    text-align: left;
    margin: 0 auto;
}

.sayfa-icerik {
    margin-top: 25px;
}

/* hakkimizda */


.info-section {
    width: 80%;
    gap: 50px;
    margin: 40px auto;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-area {
    max-width: 50%;
}

.right-area {
    max-width: 50%;
}

.text {
    margin-bottom: 40px;
}



.tabs {
    display: flex;
    justify-content: start;
    margin-bottom: 20px;
    margin-top: 40px;
}

.tab-button {
    padding: 15px 30px;
    background-color: #f1f1f1;
    border: 2px solid #ddd;

    font-size: 18px;
    cursor: pointer;
    margin: 0 15px;
    display: flex;
    align-items: center;
    margin: 0px;
}
.right-area img{
    max-width:100%;
}

.tab-button-vizyon {
    border-radius: 20px 0px 0px 20px;
}

.tab-button-misyon {
    border-radius: 0px 20px 20px 0px;
}

.tab-button.active {
    background-color: #0A7B79;
    color: white;
}

.hakkimizda-text h3{
    color: #0A7B79;
    margin-bottom: 50px;
}
.hakkimizda-text p{
    color: #000;
    font-size:18px;
    font-weight:500;
}
.tab-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.tab-button:hover {
    background-color: #f0f0f0;
}

.tab-content {
    display: none;
    text-align: left;
    font-size: 16px;
}

.tab-content.active {
    display: block;
}



.team-photo {
    flex: 1;
}

.team-image {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.team-description {
    flex: 1;
    text-align: left;
    font-size: 16px;
    color: #555;
    max-width: 500px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* BLUR MEKANİĞİ */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
  
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.blur-overlay.active {
    opacity: 1;
}

/* BLUR'DAN MUAF TUTULACAK ELEMENTLER */
header,
.slider-wrapper,
.thumbnail-section {
    position: relative;

}

/* SLIDER STILLERI */
.slider-wrapper {
    width: 100%;
    position: relative;
}

.main-slider {
    width: 100%;
    border-radius: 0px 0px 150px 150px;
    height: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
    background-size: contain;
    background-position: center;
    background-repeat:no-repeat!important;
}

/* THUMBNAIL BUTONU */
.thumbnail-toggle {
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;

    width: 35px;
    height: 35px;
    bottom: 200px;
    right: 20px;
    background-color: #fff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 16;
    font-weight: bold;
}

/* THUMBNAIL SECTION */
.thumbnail-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1270px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease;
    max-height: 0;
    opacity: 0;
    justify-content: center;
}

.thumbnail-section.active {
    max-height: 500px;
    height: 100%;
    margin-bottom: 250px;
    opacity: 1;
    padding: 15px 0;
}
.thumbnail-section-details {
    width: 100%;
   
    display: flex;
    flex-direction: column;
    max-width: 1270px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease;

    justify-content: center;
}



.thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;

}
.thumbnail-container-details {
    display: flex;
    margin-top:40px;
    justify-content: center;
    gap: 8px;

}

.thumbnail {
    max-width: 320px;
    height: 160px;
    border-radius: 25px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumbnail:hover {
    border-color: #4a6bff;
    transform: scale(1.05);
}



/* MOBILE UYUMLULUK */
@media (max-width: 768px) {
    .main-slider {
        height: 234px!important;
        border-radius:0px 0px 75px 75px ;
        margin-top:-45px;
    }

    .thumbnail {
        width: 70px;
        height: 50px;
    }
}

.section {
   
    margin-bottom:30px;
}

:root {
    --new-primary: #6C5CE7;
    --new-dark: #2D3436;
    --new-light: #f8f9fa;
}

.triple-section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

/* BÖLÜM 1: YENİ SOL KISIM */
.triple-left-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.triple-left-part .triple-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--new-dark);
}

.triple-left-part .triple-desc {
    font-weight: 400;
    margin-bottom: 30px;
    color: #666;
}

.triple-main-btn {
    background: #fff;
    color: #333;
    ;
    border: 1px solid;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    margin-bottom: 25px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    width: fit-content;
    transition: transform 0.3s;
}

.triple-main-btn:hover {
    transform: translateY(-3px);
}

/* BÖLÜM 2: YENİ ORTA KISIM */
.triple-center-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.triple-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.triple-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.triple-caption-text {
    font-weight: 500;
    max-width: 80%;
}

.triple-diagonal-btn {
    background: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.triple-diagonal-btn-uyeler{
    background: #fff;
    display:none!important;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin:0 auto;

}
.person-card:hover .triple-diagonal-btn-uyeler{
    display:flex!important;
}

/* BÖLÜM 3: YENİ SLIDER */
.triple-right-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.triple-swiper-container {
    width: 100%;
    height: 100%;
}

.triple-slide img {
    width: 100%;
    border-radius: 20px;
    max-height: 200px;
    object-fit: cover;
}
@media (max-width:768px){
    .triple-slide img{
        padding-bottom:50px;
    }
}

.triple-slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.triple-slider-text {
    font-weight: 500;
    max-width: 80%;
    padding-top: 50px;
}

.triple-slider-nav {
    display: flex;
    gap: 10px;
}

.triple-slider-nav button {
    background: var(--new-white);
    align-items: center;
    ;
    color: #333;
    ;
    border: 1px solid;
    padding: 0px;
    font-size: 5px;
    font-weight: 400;
    stroke-width: 2;
    ;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

/* MOBILE UYUMLULUK */
@media (max-width: 992px) {
    .triple-section-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .triple-left-part {
        text-align: center;
        align-items: center;
    }

    .triple-center-image,
    .triple-right-slider {
        height: 400px;
    }
}

.section-area-2 {
    margin-top: -200px;
    background: #fff;
    position: relative;
    z-index: 16;
    border-radius: 100px 100px 0px 0px;
}

.thumb-text-area {
    font-size: 18px;
    max-width: 1210px;
    margin: 0 auto;
    margin-top: 30px;

}

#play-button{
    background:transparent;
}
.content h2{
    color:#fff;
}
.overlay h1{
    color:#fff;
}
.header-text-destek{
    display:flex;
    gap:10px;

}
.destek-logo{
    width:41px;
    height:36px;
}
.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;

}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="gender"],
input[type="date"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border 0.3s;
}
#gender{
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #0A7B79;
    outline: none;
}

textarea {
    height: 120px;
    resize: vertical;
}

.file-upload {
    margin-top: 25px;
    position: relative;
    border-radius:50px;
}

.file-upload label {
    display: inline-block;
    padding:  10px;
    background-color: #0A7B79;
    color: white;
    
    cursor: pointer;
    font-size: 16px;
    display:flex;
    gap:25px;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    border-radius:50px;
}
.file-icon{
    width:20px;
    height:20px;
}
.file-upload label:hover {
    background-color: #08615f;
}

.file-upload i {
    margin-right: 10px;
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload span {
    font-size: 14px;
    color: #666;
    display: block;
   
}

.submit-btn {
    background-color: #f2f2f2;
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 250px;
    height:50px;
}

.submit-btn:hover {
    background-color: #0A7B79;
    color:#fff;
}

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

@media (max-width: 768px) {
    .ikili-form {
        flex-direction: column;
        gap: 20px;
    }
    .page-details{
        padding-right:15px;
        margin-left:25px!important;
    }
    .person-card img{
        object-position:top;
    }
    .form-section {
    flex: 1;
    display:flex;
    flex-direction:column!important;
    
gap:50px!important;
    justify-content: center;
    background-color: #f9f9f9;
}
@media (max-width:768px){
    .form-container-uyelik{
        padding:15px;
    }

}

}
.butonlar-form{
    display:flex;
    justify-content: space-between;
}
.form-section {
    flex: 1;
    display:flex;
    flex-direction:row;
    

    justify-content: center;
    background-color: #f9f9f9;
}

.form-container-iletisim {
    max-width: 50%;
    margin: 0 auto;
    width: 100%;

    padding: 30px;
    background-color: white;
    border-radius: 8px;
}



.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: vertical;
}



.map-section {
    flex: 1;
    max-width: 50%;
    position: relative;
}

#map {
    height: 100%;
    width: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

.floating-icons {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.icon-wrapper {
    position: relative;
    margin: 20px 0;
  }
  
  .icon-circle {
    background-color: #fbc24a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
  }
  
  .info-bubble {
    position: absolute;
    top: 50%;
    left: 70px;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    padding: 15px 20px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    max-width: 260px;
  }
  
  .icon-circle:hover .info-bubble {
    opacity: 1;
    pointer-events: auto;
  }

  .form-container-uyelik {
    max-width: 900px;
    margin: auto;
  }

  .form-title-uyelik {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-top:30px;
    margin-bottom: 40px;
  }

  .form-section-uyelik {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom:15px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20px;
    height: 4px;
    background-color: #fbc24a;
    border-radius: 2px;
  }

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

  .form-group-uyelik {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
  }

  .form-group-uyelik label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .form-group-uyelik input,
  .form-group-uyelik select {
    padding: 14px 20px;
    border: none;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 16px;
  }

  .recaptcha-container-uyelik {
    margin: 30px 0;
  }




  @media (max-width: 768px) {
    .form-group-uyelik {
      flex: 1 1 100%;
    }
  }

  .main-image-section {
    background-color: #fff;
  }

  .main-image {
    width: 90%;
    margin: 0 auto;
    border-radius: 25px;
    height: 500px;
    object-fit: cover;
    display: block;

  }

  .main-caption {
    background-color: rgb(0, 0, 0,0.8);
    color: white;
    width:90%;
    left:0;
    border-radius: 25px;
    position:absolute;
    top: 50%;
    
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .main-caption h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .main-caption p {
    font-size: 14px;
    max-width: 500px;
  }

  .arrow-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    fill: white;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    width:90%;
    margin:0 auto;
  }

  .grid-item img {
    width: 100%;
    height: 180px;
    border-radius:25px;;
    object-fit: cover;
  }

  .grid-item h3 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
  }

  .grid-item p {
    font-size: 14px;
    color: #555;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .grid-container {
      grid-template-columns: 1fr;
    }

    .main-caption {
      flex-direction: column;
      gap: 20px;
    }

    .main-caption p {
      max-width: 100%;
    }
  }
  .triple-center-image-projects {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height:80vh;
    width:90%;
    margin: 0 auto;
}

.triple-center-image-projects img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.triple-image-caption-projects {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.triple-caption-text-projects {
    font-size: 30px;
    color:#fff;
    max-width: 80%;
    display:flex;
    flex-direction:column;
}
.page-details{
    max-width:1270px;
    margin:0 auto;
    padding-top:50px;
}
.blogs-page{
    max-width:1700px;
    margin:0 auto;
}
@media (min-width:769px){
    .hidden-s{
        display:none;
    }
}
@media (max-width:768px){
    hidden-m{
        display:none;
    }
}

@media (min-width:769px){
    .mobile-menu{
        display:none;
    }
}


/* MOBİL DÜZENLEMELER (max-width: 768px) */
@media (max-width: 768px) {
    /* HEADER MOBİL */
    .hidden-m{
        display:none;
    }
    header {
      padding: 15px 20px;
      margin: 0;
      border-radius: 0 0 30px 0;
      flex-direction: row;
      justify-content: space-between;
    }
  
    .logo img {
      width: 100px !important;
    }
  
    .mobile-menu nav ul {
      position: fixed;
      top: 85;
  
      left: 0;
      width: 100%;
      height: 50vh;
      background: #0A7B79;
      border-radius:45px 45px 0px 0px;
      
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      z-index: 1000;
      margin: 0;
      padding-top: 30px;
    }
    .mobil-menu{
        display:none;
    }
      /* Menü Açıldığında Mobil Menü Göster */
    .mobil-menu.active {
        display: block!important;
    }
    nav ul li a{
        color:#fff;
    }
    nav ul.active {
      left: 0;
    }
  
    nav ul li {
      margin-left: 15px!important;
      margin-right: 15px!important;
      padding-bottom:5px;
      border-bottom:1px solid #015452;
      text-align:left;
      color:#fff;
    }
  
    .header-right {
      margin-top: 0;
    }
  
    .signup-btn {
      margin-right: 10px;
      padding: 8px 15px;
      padding-bottom:5px;
    }
  
    /* HAMBURGER MENÜ */
    .menu-toggle {
      display: flex !important;
      z-index: 1001;
    }
  
    /* ABOUT SECTION MOBİL */
    .about-section {
      padding: 20px;
      flex-direction: column;
    }
  
    .about-text {
      padding-right: 0;
      margin-bottom: 20px;
    }
  
    .about-images {
      flex-direction: column;
    }
  
    .image-card {
      margin-left: 0 !important;
      margin-bottom: 20px;
    }
  
    /* BAŞKAN MESAJI MOBİL */
    .baskan-mesaji {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }
  
    .baskan-mesaj-area h2 {
      font-size: 28px !important;
    }
  
    .baskan-mesaj-area h4,
    .baskan-mesaj-area p {
      font-size: 16px !important;
    }
  
    /* SLIDER MOBİL */
    .slider-logo {
      width: 95% !important;
    }
  
    .slider-item-logo img {
      max-height: 100px !important;
    }
  
    /* IMAGE CONTAINER MOBİL */
    .image-container {
      height: 300px !important;
    }
  
    .overlay h2 {
      font-size: 20px !important;
      padding: 0 15px;
    }
  
    .overlay p {
      font-size: 14px !important;
      padding: 0 15px;
    }
  
    /* FOOTER MOBİL */
    .footer-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-button {
      width: 80% !important;
      margin: 5px 0 !important;
    }
  
    /* TABS SECTION MOBİL */
    .tabs-section {
      flex-direction: column;
      padding: 20px !important;
      gap: 20px;
    }
    .footer-button-giris,
    .footer-button-uye-ol{
        width:50%;
    }
  
    .left-panel {
      max-width: 100% !important;
      max-height: 200px !important;
    }
  
    .tabss {
      flex-direction:column;
      justify-content: center;
      gap: 10px !important;
    }
  
    .tab {
      padding: 10px 15px !important;
      font-size: 14px;
    }
  
    /* ÜYE BÖLÜMÜ MOBİL */
    .header-container {
      height: 200px !important;
    }
  
    .overlay {
      font-size: 24px !important;
      text-align: center;
      padding: 0 20px;
    }
  
    .person-cards-row {
      flex-direction: column;
      align-items: center;
    }
  
    .person-card {
      width: 80% !important;
      height: auto !important;
      margin: 10px 0 !important;
    }
  
    .baskan-top {
      width: 90% !important;
    }
  
    /* GENEL DÜZENLEMELER */
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  

  }
  /* MOBİL DÜZENLEMELER (max-width: 768px) */
@media (max-width: 768px) {
    /* ÜYELER LOGO GRID */
  .logos-container {
    display: grid; /* Flex yerine Grid kullanıyoruz */
    grid-template-columns: repeat(2, 1fr); /* 2 eşit genişlikte sütun oluşturur */
    gap: 15px !important;
    margin: 20px auto !important;
    padding: 10px !important;
    }
  
    .logo-image {
      width: 100px !important;
      height: 100px !important;
    }
  
    /* HAKKIMIZDA BÖLÜMÜ */
    .info-section {
      flex-direction: column !important;
      width: 90% !important;
      gap: 20px !important;
    }
  
    .left-area, 
    .right-area {
      max-width: 100% !important;
    }
  
    .tabs {
      justify-content: center !important;
      margin-top: 20px !important;
    }
  
    .tab-button {
      padding: 10px 15px !important;
      font-size: 14px !important;
    }
  
    /* TÜZÜK SAYFASI */
    .sayfa-icerik p {
      padding: 0 15px !important;
    }
  
    /* TRIPLE SECTION */
    @media (max-width: 768px) {
        .triple-section-container {
         display:flex;
         flex-direction:column;
          gap: 20px;
          padding: 20px !important;
        }
        .triple-left-part .triple-desc{
            font-size:13px!important;
            font-weight:bold;
            color:#000;
        }
        .triple-left-part {
          grid-area: left;
          text-align: center !important;
          height:200px;
          font-size:10px;
        }
      
        .triple-center-image {
          grid-area: center;
          height: 200px !important;
        }
      
        .triple-right-slider {
          grid-area: right;
          height: 320px !important;
        }
        .baskan-foto img{
            max-width:250px;
        }
      }
  
    /* FORM ALANLARI */
    .form-container {
      padding: 15px !important;
    }
  
    .ikili-form {
      flex-direction: column !important;
      gap: 15px !important;
    }
  
    .form-container-iletisim {
      max-width: 100% !important;
      padding: 20px !important;
    }
  
    .map-section {
      max-width: 100% !important;
      height: 300px !important;
    }
  
    .floating-icons {
      left: 35% !important;
      top: auto !important;
      bottom: 140px !important;
      transform: none !important;
      flex-direction: row !important;
    }
  
    .icon-circle {
      width: 40px !important;
      height: 40px !important;
    }
  
    .info-bubble {
      left: 50% !important;
      top: -60px !important;
      transform: translateX(-50%) !important;
      white-space: normal !important;
      width: 200px !important;
    }
  
    /* GRID YAPILAR */
    .grid-container {
      grid-template-columns: repeat(2, 1fr) !important;
      padding: 15px !important;
      gap: 15px !important;
      width: 100% !important;
    }
  
    .grid-item img {
      height: 120px !important;
    }
  
    /* PROJE DETAY */
    .triple-center-image-projects {
      height: 50vh !important;
      width: 100% !important;
    }
  
    .triple-caption-text-projects {
      font-size: 18px !important;
    }
  
    /* BLOG SAYFASI */
    .blogs-page {
      padding: 0 15px !important;
    }
  
    /* ÖZEL DÜZENLEMELER */
    .section-area-2 {
      margin-top: -120px !important;
      border-radius: 50px 50px 0 0 !important;
    }
  
    .thumbnail-container {
      flex-wrap: wrap !important;
    }
  
    .thumbnail {
      width: 80px !important;
      height: 60px !important;
    }
  
    .thumbnail-section.active {
      margin-bottom: 120px !important;
    }
  
    /* UYELIK FORM */
    .form-group-uyelik {
      flex: 1 1 100% !important;
    }
  
    .form-title-uyelik {
      font-size: 22px !important;
      margin: 20px 0 !important;
    }
  
    /* MAIN IMAGE */
    .main-image {
      height: 300px !important;
      width: 100% !important;
      border-radius: 0 !important;
    }
  
    .main-caption {
      width: 100% !important;
      padding: 20px !important;
      border-radius: 0 !important;
      position: relative !important;
      top: auto !important;
    }
  
    /* GENEL DÜZENLEMELER */
    .submit-btn {
      width: 100% !important;
    }
  
    .butonlar-form {
      flex-direction: column !important;
      gap: 15px !important;
    }
  
    .file-upload label {
      padding: 12px !important;
      font-size: 14px !important;
    }
    .thumbnail-toggle {
        position: absolute;
        align-items: center;
        justify-content: center;
        display: flex;
    
        width: 35px;
        height: 35px;
        bottom: 100px;
        right: 20px;
        background-color: #fff;
        color: white;
        border: none;
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 16;
        font-weight: bold;
    }
  }
