﻿* {
    font-family: 'Gidole', sans-serif;
}
/*********************************************************** Carousel **************************************************************************/

.carousel-item {
    justify-content: center;
    align-items: center;
    background-color: black; /* Siyah zemin bozulmayı engeller */
    overflow: hidden; /* Taşmaları engelle */
}

    .carousel-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

@media (max-width: 991.98px) {
    .carousel-item {
        height: 50vh;
    }

        .carousel-item img {
            height: 100%;
        }
}

@media (min-width: 992px) {
    .carousel-item img {
        height: auto;
    }
}



/***********************************************************Who Are We**************************************************************************/

.custom-button {
    background-color: darkorange;
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    min-width: 180px;
    text-decoration: none;
}

    .custom-button:hover {
        background-color: #212529;
        color: white;
        transition-duration:1s;
    }


.fade-in {
    opacity: 0;
    transform: translateY(30px); /* Hafif aşağıdan yukarı kayma efekti */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

div > img {
    width:100%;
    height:100%;
    padding:0px;
}
/****************************************************************Resim Ve Hover*********************************************************************/
.pv-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0;
}



/* Resim */
.pv-image {
    position: relative;
    width: 100%;
    height: 100%;
}

    .pv-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: brightness(0.8);
    }

/* PV SİSTEM Başlığı (Resmin Üstünde) */
.pv-title {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.8s ease-in-out;
}

/* Overlay (Siyah Arka Plan) */
.pv-overlay {
    position: absolute;
    bottom: -100%; /* İlk başta görünmez */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: bottom 0.8s ease-in-out, opacity 0.8s ease-in-out;
    padding: 20px;
}

/* Hover Efekti */
.pv-container:hover .pv-overlay {
    bottom: 0; /* Yukarı doğru kaydır */
    opacity: 1;
    background-color:black;
}

.pv-container:hover .pv-title {
    transform: translateX(-50%) translateY(-50px); /* Başlık yukarı kayar */
    opacity: 0;
}

.pv-overlay h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pv-overlay p {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 10px;
}

.pv-arrow {
    font-size: 24px;
    color: orange;
    font-weight: bold;
}

/******************************************************** Vizyon ve misyon **********************************************************/
.bg-blue {
    background-color: black; /* %20 soluk mavi tonu */
    color: white; /* Yazıları daha belirgin yapmak için */
    padding: 20px;
    border-radius: 10px; /* Köşeleri hafif yuvarlatma */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.bg-orange {
    background-color:black ; /* %20 soluk turuncu tonu */
    color: white; /* Yazıları belirginleştirmek için */
    padding: 20px;
    border-radius: 10px; /* Köşeleri hafif yuvarlatma */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.blue {
    color: #FC7314;
}
.orange {
    color: #FC7314;
}
/******************************************************** Where Do we reach **********************************************************/
.map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.world-map {
    width: 100%;
    max-width: 1200px; /* Haritanın genişliği */
}

.red-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: pulse 1s infinite alternate;
}

/* Kırmızı noktanın yanıp sönme efekti */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.bg-1 {
    background-color: #ECF1FB;
}

.bs-1 {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    /*box-shadow:10px 10px 5px black;*/
}

.text-custom {
    color: #EA5E27;
    font-size: 3.5rem;
    padding: 0px;
    margin: 0px;
    text-decoration: underline ;
    text-underline-offset: 10px;
}
.inner-text {
    font-size:1.4rem;
    color:black;
    text-align:center;
    padding:0px 50px 50px;
    margin-top:0px;
    
}

.justify_items_center {
    justify-items:center;
}



.wp {
    color: white;
    justify-content: end;
    margin-left: 10vh;
}

/* WP Logo Konteyneri */
.wp-logo-container {
    position: fixed;
    right: 10px; /* Sayfanın sağ kenarından 10px içeride */
    bottom: 80px; /* Sayfanın en altından 50px yukarıda */
    background: green;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 70px; /* Başlangıçta küçük */
    padding: 5px;
    transition: width 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}
    /* Hover durumunda konteyner genişleyerek telefon numarasını gösterecek */
    .wp-logo-container:hover {
        width: 250px;
    }

    .wp-logo-container img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .wp-logo-container .phone-number {
        margin-left: 10px;
        font-size: 14px;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
        white-space: nowrap;
        font-size: large;
    }

    .wp-logo-container:hover .phone-number {
        opacity: 1;
    }