body{
    font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.image-container {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
}

/* Tooltip stili */
.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: #fec76f;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer; /* Tooltip'e tıklanabilirlik ekledik */
}

/* Tooltip resim üzerine gelince göster */
.image-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.tooltip-map {
    opacity: 0;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    pointer-events: none; /* Tooltip'in tıklanabilirliğini devre dışı bırak */
    font-size: 12px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
/* Resim stili */
.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Resim üzerine gelince büyütme ve gölgelendirme efekti */
.image-container:hover img {
    transform: scale(1.05);
}

/* Modal (Pop-up) arka planı */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Modal (Pop-up) içerik */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); 
    background-color: white;
    width: 45%; 
    max-height: 80%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.5s ease-in-out; 
    overflow-y: auto; 
    top: calc(50% + 50px); /* Navbar yüksekliğinin yarısı kadar aşağı kaydır */
    transform: translate(-50%, -50%) scale(0);
}
.modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
}
@media (max-width: 768px) {
    .modal {
        width: 90%;
        max-height: 90%;
        top: 60%; /* Mobilde navbar yüksekliğini dikkate almayabilirsiniz */
        transform: translate(-50%, -50%) scale(0);
    }
}


.modal .feildcont {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Elemanlar arası boşluk */
}

.modal .one_half {
    width: 100%; /* Mobil cihazlarda tam genişlik */
}

/* YouTube iframe için stil */
.modal iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Modal aktif olduğunda animasyon */
.modal.open {
    transform: translate(-50%, -50%) scale(1); /* Büyüme animasyonu */
}

/* Label ile tıklama */
label {
    cursor: pointer;
}


/* SLIDER KODLARI */


.slider {
    margin: 0 auto; /* Ortala */
    position: relative;
    width: 70%;
    height: 60vh;
    overflow: hidden;
    user-select: none;
    pointer-events: none; 
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);

}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: auto;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 100%;
  height: auto;
  display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Görselin tüm alanı kaplamasını sağlar */
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
    padding-top:6rem;
}
.circle-slider {
    position: absolute;
    top: 60%;
    left: -350px;
    transform: translate(-50%, -50%);
    animation: slideIn 2s ease-out forwards;
    background: linear-gradient(45deg, rgba(254, 199, 111,0.8), rgba(245, 148, 92,0.8)); 
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-width: 500px; 
    min-height: 500px;
    pointer-events: none;
}

@keyframes slideIn {
    0% {
        left: -350px; 
        opacity: 0;
    }
    10% {
        left: 10%;
        opacity: 0.7;
    }
    100% {
        left: 30%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
.slide-title {
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    animation: textSlideIn 1.5s ease-out forwards; 
    animation-delay: 0.5s; 
    font-size: 2.6rem;
    margin-bottom: 1rem;
    transform: translateX(-100%);
    opacity: 0;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    position: relative;
    z-index: 2; 
    pointer-events: none; 
}

.slide-text {
    opacity: 0;
    transform: translateY(-50px);
    visibility: hidden;
    animation: textSlideIn 1.5s ease-out forwards; 
    animation-delay: 0.5s; 
    font-size: 1.6rem;
    transform: translateX(-100%);
    opacity: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease-out 0.3s, opacity 0.5s ease-out 0.3s;
    position: relative;
    z-index: 2; 
    pointer-events: none; 
}
@keyframes textSlideIn {
    0% {
        transform: translateY(-50px); /* Yazı yukarıda başlasın */
        opacity: 0;
        visibility: visible;
    }
    100% {
        transform: translateY(0); /* Yazı normal yerine gelsin */
        opacity: 1;
        visibility: visible;

    }
}
.cta-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #ff6f61; /* Buton için turuncu-kırmızı tonları */
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none; /* Link altını çizmesini engeller */
    text-align: center;
    z-index: 3;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
    pointer-events: auto;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #e55b50; /* Hoverda daha koyu bir kırmızı */
}
.slide-title, .slide-text {
    font-family: 'Poppins', sans-serif; /* Slider içindeki yazı fontu */
}
.slide.active .slide-title,
.slide.active .slide-text {
    transform: translateX(0);
    opacity: 1;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 3; 
    pointer-events: auto; 
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    pointer-events: auto; 
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .slide-content {
        max-width: 70%;
        top:40%;
    }

    .circle-slider {
        min-width: 350px; /* Mobil için minimum boyut */
        min-height: 350px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .slider-button {
        padding: 10px;
        font-size: 1.2rem;
    }
}

/* SLIDER KODLARI:END */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    pointer-events: auto;
}

/* Ürün */
.product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.product img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #fec76f;
    border-radius: 50%; /* Görselleri yuvarlak yapmak için */
    object-fit: cover; /* Görselin yuvarlak içine düzgün sığmasını sağlamak için */
    pointer-events: none;
}

.product h3 {
    color: #333;
    margin: 15px 0;
    font-size: 1.2em;
    pointer-events: none;
}

/* Buton özelleştirme */
.product .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0 20px 0; /* Butonun altına margin ekledik */
    background-color: #fec76f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    pointer-events: auto;
}

.product .btn:hover {
    background-color: #e0b15a;
    pointer-events: auto;

}
.reference {
    background-color: #fff;
    border-radius: 40%;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}
.reference:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.reference img {
    width: auto;
    height: auto;
    border-bottom: 2px solid #fec76f;
    border-radius: 50%; /* Görselleri yuvarlak yapmak için */
    object-fit: cover; /* Görselin yuvarlak içine düzgün sığmasını sağlamak için */
    pointer-events: none;
}
/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.product:nth-child(1) { animation-delay: 0.1s; }
.product:nth-child(2) { animation-delay: 0.2s; }
.product:nth-child(3) { animation-delay: 0.3s; }
.product:nth-child(4) { animation-delay: 0.4s; }
.product:nth-child(5) { animation-delay: 0.5s; }
.product:nth-child(6) { animation-delay: 0.6s; }
.product:nth-child(7) { animation-delay: 0.7s; }
.product:nth-child(8) { animation-delay: 0.8s; }

/* Mobil Uyumlu Tasarım */
@media (max-width: 1024px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .product h3 {
        font-size: 1.1em;
    }

    .btn {
        padding: 8px 16px;
    }
    .yutup{
        width: auto; 
    }
    
}

.country {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 0.5px;
    transition: fill 0.3s ease;
    /* Renk değişimi için animasyon */
}

.country:hover {
    fill: #fec76f;
    /* Fare üzerine gelince turuncu renk */
}

.circle {
    fill: #fec76f;
    stroke: #fff;
    stroke-width: 1px;
    cursor: pointer;
}

.label {
    fill: #fff;
    font-size: 7px;
    font-weight: bold;
    text-anchor: middle;
    pointer-events: none;
    /* Tıklanabilirliği devre dışı bırak */
}
svg {
    width: 100%;
    height: auto;
  }

.yutup{
    margin: auto;
    width: 55%;
    max-width: auto; 
    max-height: 80%;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.yutup iframe {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    
}


/* Clear Fix Styles */

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
    }
    .clearfix { display: inline-block; }
    /* start commented backslash hack \*/
    * html .clearfix { height: 1%; }
    .clearfix { display: block; }
    /* close commented backslash hack */
    
    .clearfix
    {
        display:block;
    }
    
/* margin bitween sections */
.margin_top1 {
	float: left;
	width: 100%;
	margin-top: 10px;
}
.margin_top2 {
	float: left;
	width: 100%;
	margin-top: 20px;
}
.margin_top3 {
	float: left;
	width: 100%;
	margin-top: 30px;
}
.margin_top4 {
	float: left;
	width: 100%;
	margin-top: 40px;
}
.margin_top5 {
	float: left;
	width: 100%;
	margin-top: 50px;
}
.margin_top6 {
	float: left;
	width: 100%;
	margin-top: 60px;
}
.margin_top7 {
	float: left;
	width: 100%;
	margin-top: 70px;
}
.margin_top8 {
	float: left;
	width: 100%;
	margin-top: 80px;
}
.margin_top9 {
	float: left;
	width: 100%;
	margin-top: 90px;
}
.margin_top10 {
	float: left;
	width: 100%;
	margin-top: 100px;
}
.margin_top11 {
	float: left;
	width: 100%;
	margin-top: 110px;
}
.margin_top12 {
	float: left;
	width: 100%;
	margin-top: 120px;
}
.margin_top13 {
	float: left;
	width: 100%;
	margin-top: 130px;
}
.margin_top14 {
	float: left;
	width: 100%;
	margin-top: 140px;
}
.margin_top15 {
	float: left;
	width: 100%;
	margin-top: 150px;
}
.margin_top16 {
	float: left;
	width: 100%;
	margin-top: 160px;
}
.margin_top17 {
	float: left;
	width: 100%;
	margin-top: 170px;
}
.margin_top18 {
	float: left;
	width: 100%;
	margin-top: 180px;
}


.margin_bottom1 {
	margin-bottom: 10px;
}
.margin_bottom2 {
	margin-bottom: 20px;
}
.margin_bottom3 {
	margin-bottom: 30px;
}
.margin_bottom4 {
	margin-bottom: 40px;
}
.margin_bottom5 {
	margin-bottom: 50px;
}
.margin_bottom6 {
	margin-bottom: 60px;
}
.margin_bottom7 {
	margin-bottom: 70px;
}
.margin_bottom8 {
	margin-bottom: 80px;
}
.margin_bottom9 {
	margin-bottom: 90px;
}
.margin_bottom10 {
	margin-bottom: 100px;
}
.margin_bottom11 {
	margin-bottom: 110px;
}
.margin_bottom12 {
	margin-bottom: 120px;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 10px;
}

#chartdiv {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}