@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

a {
    color: #525252;
    text-decoration: none;
}

body {
    font-family: "Mulish", sans-serif;
    background: #ffffff;
    font-size: 15px;
    color: #7e7e7e;
}
:root {
    --footer-bg-color: #383e42; 
    --text-color: #FFFFFF;
    --border-color: rgba(255, 255, 255, 0.15);
    --header-font: 'Libre Baskerville', serif;
    --body-font: 'Mulish', sans-serif;
    --graybg: #F8F8F8;
    --mainred: #EC1A25;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
    color: #000;
}

p {
    font-family: "Mulish", sans-serif;
    color: #000;
}

strong {
    color: #000;
    font-weight: 600;
}

.w100 {
    width: 100%;
}

.index-header {
    z-index: 900;
    width: 100%;
    background-color: var(--graybg);
}

.header-wrapper {
    z-index: 900;
    width: 100%;
}

.index-banner {
    width: 100%;
    height: 720px;
    position: relative;
    overflow: hidden;
}

.menu,
.menu ul,
.menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    display: inline-block;
    margin-left: 30px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.menu a:hover {
    color: #936b38;
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.indexmainslider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 110%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        background-size: 110%;
    }
    100% {
        background-size: 125%;
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    width: 100%;
    max-width: 500px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 2.4rem;
    font-family: var(--header-font);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
}

.content-subtitle {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease-out 0.7s;
}

.slider-item.active .content-title,
.slider-item.active .content-subtitle {
    transform: translateY(0);
    opacity: 1;
}

.slider-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.slider-btn:hover {
    background-color: transparent;
    color: #fff;
}

.slider-dots-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

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

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-content {
        left: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
    }
    .content-title {
        font-size: 2rem;
    }
}
.index-header{
    padding:25px 0;
}
.menu li a{
    font-family: var(--header-font);
    font-size:14px;
    transition: 0.3s all ease;
    position: relative; 
    padding-bottom: 5px;
}
.menu li a:hover{
    color:#383e42
}
.menu .current-menu-item a{
    font-weight: 600;
    color:#383e42
}
.menu .current-menu-item a::after {
    content: ""; 
    display: block;
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%; 
    height: 2px; 
    background-color: #383e42; 
    opacity: 1; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
    transform: scaleX(1); 
}
.menu li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #383e42;
    transform: scaleX(0); 
    transition: transform 0.3s ease;
}

.menu li a:hover::after {
    transform: scaleX(1); 
}
.highlight {
    position: relative;
    display: inline-block;
}

.highlight svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    transform: translate(-50%, -50%);
    overflow: visible;
    z-index: -1;
}

.highlight svg path {
    stroke: #383e42;
    stroke-width: 12;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-signature 1s ease-in-out forwards;
}

@keyframes draw-signature {
    0% {
        stroke-dashoffset: 560;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.custom-breadcrumb {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px 10px 0;
    font-size: 12px;
    text-transform: none !important;
}

.custom-breadcrumb {
    font-size: 12px;
    text-transform: none !important;
}

.custom-breadcrumb a:hover {
    color: #383e42;
}

.site-logo-wrapper a img {
    height: auto;
    width: 256px;
}

.modal-body {
    z-index: 1001;
}

.modal-content {
    background-color: rgba(0, 0, 0, 1) !important;
}

.menu-mainmenu-container ul li a {
    text-transform: unset;
}

.modalmap {
    width: 50%;
}

.menumodalbottom,
.menumodalbottomsmedya {
    display: flex;
    gap: 30px;
}

.menumodalbottom span,
.menumodalbottomadres span {
    font-weight: 200;
}

.menumodalbottom span a,
.menumodalbottomadres span a,
.menumodalbottomsmedya span a {
    text-decoration: none;
    color: #fff;
}

.menumodalbottomsmedya span a img {
    width: 32px;
}

@media (max-width: 600px) {
    .modalmap {
        width: 85%;
    }
    .index-banner .banner-slide {
        height: 1500px;
    }
    .headerright img {
        margin: 0;
        width: 36px;
    }
    .page-header-wrapper {
        height: 6rem;
    }
    .page-header-wrapper .container .header h1 {
        font-size: 20px;
    }
    .breadcrumb {
        margin: 9rem 0 20px;
    }
    .index-banner {
        height: 1500px;
    }
    .indexfrmwrp {
        padding: 20px;
    }
    .faqcardwrapper {
        padding: 10px;
    }
    .faq-section {
        padding-top: 0 !important;
    }
    .hesapwrapper {
        padding: 20px !important;
    }
    .indexhdgwrp {
        padding: 100px 40px;
    }
    .aboutus h1 {
        font-size: 20px;
        margin-top: 4.5rem;
    }
    #aboutimg3 {
        position: unset;
        margin: 30px 0;
    }
    .halfwd {
        width: 100%;
    }
    .aboutus {
        margin-top: -120px;
    }
    .hizmetcontactwrapper {
        padding: 0;
    }
    .footerlogowrapper img {
        width: 40%;
    }
    .contactcardwrapper {
        height: auto;
        margin-top: 40px;
        padding: 0;
    }
    .locationcardwrapper {
        margin-bottom: 20px;
    }
    .contactformwrapper label,
    .contactformwrapper .wpcf7-form-control-wrap,
    .contactformwrapper input {
        width: 100%;
    }
    .contactformwrapper input {
        margin-top: 1px;
    }
}

.ba-section {
    width: 100%;
    padding: 60px 0;
    background: #f9f9f9; 
}

.ba-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; 
    height: 500px; 
    margin: 0 auto;
    overflow: hidden;
    cursor: col-resize; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ba-img-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; 
}

.ba-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; 
    height: 100%;
    overflow: hidden;
    z-index: 2; 
    border-right: 2px solid #fff; 
    will-change: width;
}

.ba-img-overlay img {
    width: 100vw; 
    max-width: 1000px; 
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-handle {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    pointer-events: none; 
}

.ba-handle::before {
    content: '';
    width: 0; 
    height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent; 
    border-right: 6px solid #555; 
    margin-right: 4px;
}

.ba-handle::after {
    content: '';
    width: 0; 
    height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent; 
    border-left: 6px solid #555; 
    margin-left: 4px;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    pointer-events: none;
    user-select: none;
}

.ba-label-before {
    left: 20px;
    z-index: 3; 
}

.ba-label-after {
    right: 20px;
    z-index: 1; 
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); } 
    100% { transform: translateX(0); } 
}

.logo-band-container {
    position: relative; 
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin: 20px 0;
    user-select: none;
    padding: 1rem 0;
}

.logo-band-inner {
    display: inline-flex; 
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.logo-band-container::before,
.logo-band-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%; 
    z-index: 10;
    pointer-events: none; 
}

.logo-band-container::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.9) 30%,
        rgba(248, 249, 250, 0) 100%
    );
}

.logo-band-container::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.9) 30%,
        rgba(248, 249, 250, 0) 100%
    );
}
.logo-image {
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.35;
    width: 200px;
    object-fit: contain;
    height: 100%;
}
.logo-image:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.scroll-to-left {
    animation-name: scroll-left;
    animation-duration: 50s; 
}
.scroll-to-right {
    animation-name: scroll-right;
    animation-duration: 40s; 
}
.logo-band-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem; 
    padding: 0 20px;
}
        .custom-footer {
            background-color: var(--footer-bg-color);
            color: var(--text-color);
            font-family: var(--body-font);
        }

        /* Başlık Stilleri */
        .footer-title {
            font-family: var(--header-font);
            font-size: 20px; /* İstek üzerine 20px */
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 1rem;
        }
        .footer-social{
          font-size:16px;
          font-family: var(--header-font);
          color: var(--text-color);
            margin-bottom: 1rem;
        }
        .footerctnccntn p{
          color:#fff;
        }
        .footerctnccntn a{
          color:#fff;
        }
        .magazalist li{
          margin-bottom:1rem;
        }
        .magazalist li:last-child{
          margin-bottom:0;
        }
        /* Açıklama ve Metin Stilleri */
        .footer-text {
            font-size: 16px; /* İstek üzerine 16px */
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* İnce Beyaz Sınırlar */
        .footer-section {
            border-bottom: 1px solid var(--border-color);
        }
        .footer-section ul{
          margin:0;
        }
        .miniadres{
          font-size:12px;
        }
        .minicontact{
          font-size:12px;
        }
        .cpyr p{
          margin:0;
          color:#fff;
          font-size:10px;
        }
        .cntctcontent .footer-title{
          margin-bottom:0;
        }
        .cpyr p a{
          color:#fff;
          font-size:10px;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        /* Bölüm B ve D içindeki dikey ayırıcılar (Sadece Web'de) */
        @media (min-width: 992px) { /* LG breakpoint ve üzeri */
            .column-divider-right {
                border-right: 1px solid var(--border-color);
            }
            .column-divider-left {
                border-left: 1px solid var(--border-color);
            }
        }
        
        /* A, C, E bölümlerini ayıran borderlar */
        .row-border {
            border-bottom: 1px solid var(--border-color);
        }

        /* Link Stilleri */
        .footer-link, .nav-link {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
            padding: 0.25rem 0;
            font-size: 16px;
        }
        .footer-link:hover, .nav-link:hover {
            color: #d1e2dd; /* Hafif açık renk */
        }

        /* Sosyal Medya İkonları */
        .social-icon {
            color: var(--text-color);
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }
        .social-icon:hover {
            color: #d1e2dd;
        }

        /* Mobil Akordeon Stilleri */
        @media (max-width: 991.98px) {
            .footer-accordion .accordion-item {
                background-color: var(--footer-bg-color);
                border: none;
                border-bottom: 1px solid var(--border-color);
            }
            .footer-accordion .accordion-button {
                background-color: transparent;
                color: var(--text-color);
                font-family: var(--header-font);
                font-size: 20px;
                padding: 1rem 0;
            }
            .footer-accordion .accordion-button:focus {
                box-shadow: none;
                border-color: transparent;
            }
            .footer-accordion .accordion-button::after {
                content: '+'; /* Artı işareti olarak ayarla */
                background-image: none;
                transform: rotate(0deg);
                font-size: 1.5rem;
            }
            .footer-accordion .accordion-button:not(.collapsed)::after {
                content: '-'; /* Açılınca eksi işareti */
                transform: rotate(0deg);
            }
            .footer-accordion .accordion-collapse {
                background-color: var(--footer-bg-color);
                border: none;
            }
            .footer-accordion .accordion-body {
                padding: 0 0 1rem 0;
            }
            .footer-accordion ul {
                padding-left: 0;
                list-style: none;
            }
        }


/* Genel Kapsayıcı */
.projeler-dinamik-liste {
    display: flex;
    width: 100%;
    height: 600px; /* Görsel alanın yüksekliğini ayarla */
    overflow: hidden;
}

/* Her Bir Proje Ögesi */
.proje-item {
    position: relative;
    flex-grow: 1; /* Varsayılan olarak tüm ögeler x genişliğinde başlar */
    background-size: cover;
    background-position: center center;
    transition: flex-grow 0.5s ease-in-out, background-image 0.5s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

/* 3x Genişlik (Hover / Varsayılan İlk Öge) */
.proje-item.expanded {
    flex-grow: 3; /* 3x genişlik */
}

/* x Genişlik */
.proje-item.collapsed {
    flex-grow: 1; /* x genişlik */
}

/* 0.5 Siyah Overlay */
.proje-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(35, 88, 69, 0.5); 
    transition: background-color 0.5s ease-in-out;
}

/* İçerik Kapsayıcısı (Dikey Ortalamak İçin) */
.proje-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    padding: 20px;
    width: 90%; 
    box-sizing: border-box;
}
.proje-content p{
  color:#fff;
  flex-wrap: wrap;
}
.proje-content a{
  color:#fff;
}

/* --- Genişlemiş (3x) İçerik Stilleri --- */
.proje-content-expanded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s 0.2s; /* Hafif gecikmeli geçiş */
}
.proje-item.collapsed .proje-content-expanded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s; /* Hemen kaybolmalı */
}

.proje-content-expanded h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.proje-content-expanded p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.proje-content-collapsed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s 0.2s, visibility 0s 0.5s; 
}

.proje-item.collapsed .proje-content-collapsed {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s 0s, visibility 0s;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg); 
    font-size: 1.8em;
    padding: 10px;
    margin: 0;
    transition: transform 0.3s ease-out, writing-mode 0s 0.3s; 
}
.proje-item:hover .vertical-text,
.proje-item.expanded .vertical-text {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
}
.proje-content h3,.proje-content h2{
  color:#fff;
}
/* --- Mobil Görünüm Stilleri (Sadece 'projeler-carousel-mobile' için) --- */

.projeler-carousel-mobile {
    padding: 0 15px; /* Kenarlardan boşluk bırak */
}

/* Her bir Carousel item'ı */
.proje-item-mobile {
    position: relative;
    height: 400px; /* Mobil carousel yüksekliği */
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    border-radius: 8px; /* Köşeleri yumuşat */
}

/* Mobil Overlay (Web ile aynı stili kullanabilir) */
.projeler-carousel-mobile .proje-overlay {
    background-color: rgba(35, 88, 69, 0.5); /* Web'deki ile aynı */
    z-index: 1;
}

/* Mobil İçerik Ortalaması */
.projeler-carousel-mobile .proje-content {
    /* Konumu ve ortalamayı web'deki gibi yap */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px;
    width: 90%;
    text-align: center;
}

/* Mobil Başlık ve Paragraf Stilleri */
.projeler-carousel-mobile .proje-content h3 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 10px;
}

.projeler-carousel-mobile .proje-content p {
    font-size: 1em;
    color: #fff;
    margin-bottom: 15px;
    /* Metin sarmalamayı garantile */
    white-space: normal;
    word-wrap: break-word;
}

/* Mobil Detay Butonu Stili */
.projeler-carousel-mobile .btn-detay {
    display: inline-block;
    padding: 8px 15px;
    background-color: #fff; /* Buton için farklı bir renk düşünebilirsin */
    color: rgba(35, 88, 69, 1);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


/* contact  */
/* Ana Kapsayıcı Ayarları */
.ctctbigwrapper{
  padding:120px 3rem;
  background:#383e42
}

/* Sol Blok: Arka Plan ve Metin Rengi */
.contact-info-block {
    background-color: #383e42; /* İstenen arka plan rengi */
    color: #fff; /* Tüm metinler beyaz */
    position: relative;
}

/* Sol Blok Başlıkları ve Metinleri */
.contact-info-block .sub-heading {
    font-size: 0.9em;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.contact-info-block .main-heading {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Özellikler ve Alt Detaylar Font/İkon Rengi */
.contact-info-block .feature-item,
.contact-info-block .detail-box p {
    color: #fff;
    opacity: 0.8;
}

.contact-info-block .dashicons {
    color: #fff;
    font-size: 1.2em;
    margin-right: 10px;
}

/* Yatay Ayırıcı */
.contact-divider {
    border-top: 1px solid rgba(255, 255, 255, 1); 
}

/* Alt İletişim Detayları Kutu Başlıkları */
.contact-details-bottom h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    opacity: 1;
}
.contact-details-bottom .detail-box .dashicons {
    font-size: 1.8em;
}

/* Sağ Blok: Form alanı (Beyaz Arka Plan) */
.contact-form-block {
    color: #333; /* Form metinleri daha koyu */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form-block h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-form-block .form-description {
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Get in Touch Icon Çevresi (Özel Dairesel İkon) */
.touch-icon-wrapper {
    position: absolute;
    top: 50px; /* Konumlandırmayı ayarlayın */
    right: 50px;
}
.get-in-touch-icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    color: #383e42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8em;
    text-transform: uppercase;
    text-align: center;
    /* İhtiyacınız varsa dairesel dönme animasyonu ekleyebilirsiniz */
}

/* Masaüstünde Dikey Hizalama (Opsiyonel: Eğer Sol Blok İçeriği Kısa Kalıyorsa) */
@media (min-width: 992px) {
    .contact-info-block > div {
        border:1px solid rgba(255, 255, 255, 0.3);
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%; 
    }
}

/* Contact Form 7 İki Sütunlu Düzenleme */
.contact-form-block .form-row {
    display: flex;
    gap: 15px; /* Sütunlar arası boşluk */
    margin-bottom: 15px;
}

.contact-form-block .form-col {
    flex: 1 1 50%; /* Her sütunun eşit genişlikte olmasını sağlar */
    position: relative;
}

/* CF7 Giriş Alanları ve Metin Alanları */
.contact-form-block input[type="text"],
.contact-form-block input[type="email"],
.contact-form-block input[type="date"],
.contact-form-block textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    line-height: 1.5;
}
.contact-form-block textarea {
    height: 100px;
}
.contact-form-block .submit-button {
    background-color: #383e42;
    color: #fff;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.contact-form-block .submit-button:hover {
    background-color: #348366;
}
.contact-info-block .main-heading{
  color:#fff;
}
.contact-details-bottom h4{
  color:#fff;
  margin-bottom:20px;
}

/* Onay Kutusu (Checkbox) hizalaması */
.contact-form-block .wpcf7-list-item-label {
    margin-left: 5px;
    font-size: 0.9em;
}


.faq-section-wrapper {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.faq-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.faq-main-title {
    font-size: 38px;
    line-height: 1.2;
    color: #383e42;
    margin-bottom: 30px;
    font-weight: 400;
}

.faq-image-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.faq-category-title {
    font-size: 20px;
    color: #333;
    margin: 40px 0 20px 0;
    font-weight: 400;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.faq-content .ui-widget-content {
    border: none;
    background: #383e42;
}

.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-number {
    font-weight: 600;
    margin-right: 15px;
    color: #555;
    transition: color 0.3s ease;
}

.faq-question {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 20px 20px 50px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    background-color: #383e42;
}

.faq-item.active {
    background-color: transparent;
    border-color: #383e42; 
}

.faq-item.active .faq-number,
.faq-item.active .faq-question {
    color: #fff;
}

.faq-item.active .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg);
}
.faq-item.active .faq-header {
    background-color: #383e42; 
    color: #fff;
}
.faq-item.active .faq-content {
    background-color: #383e42;
    color: #e0e0e0;
    transition: background-color 0.4s ease 0s, color 0.4s ease 0s; 
}
.faq-content p {
    color: #383e42; 
    background-color: transparent;
    transition: background-color 0.4s ease 0.3s, color 0.4s ease 0.3s;
}
.faq-item.active .faq-content p {
   color: #e0e0e0;
    background-color: #383e42;
    transition: background-color 0.4s ease 0s, color 0.4s ease 0s;
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}
.projetop{
    margin-top: 10em;
}
.projetop span{
    font-size:12px;
    margin:0;
}
.projetop h2, .projeh2s{
    color:#383e42;
    font-size:42px!important;
    margin-top:30px;
}
.projeh2s{
    color:#000!important;
    margin:0;
}
.projetop a{
    padding:18px 30px;
    font-size:12px;
    color:#fff;
    background-color: #383e42;
    border:1px solid #383e42;
    transition: 1s all ease;
    border-radius: 4px;
}
.projetop a:hover{
    color:#000;
    background-color: #fff;
}
.greenbtn{
    padding:18px 30px;
    font-size:12px;
    color:#fff;
    background-color: #383e42;
    border:1px solid #383e42;
    transition: 1s all ease;
    border-radius: 4px;    
}

.greenbtn:hover{
    color:#000;
    background-color: #fff;
}
.headerbtn{
    padding:5px 10px;
    font-size:12px;
    color:#fff;
    background-color: #383e42;
    border:1px solid #383e42;
    transition: 1s all ease;
    border-radius: 4px;    
    font-family: var(--header-font);
    display: inline-block;
}

.headerbtn:hover{
    color:#000;
    background-color: #fff;
    cursor: pointer;
}
.header-icons{
    flex-direction: column;
    display: flex; 
    align-items: start; 
}
.header-icons span{
    font-size:12px;
}
.projetop p{
    font-size:16px;
    margin-bottom:50px;
}
@media (max-width: 768px) {
    .ctctbigwrapper{
      padding:0;
    }
    .contact-info-block .main-heading{
        font-size: 1.60rem;
    }
    .projetop span{
        margin-bottom:30px;
    }
}