/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    
}
.logok {
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */
}

.logok:hover {
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

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

nav ul li {
    margin-left: 7%;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #9e9b9d;
    font-size: 1em;
    transition: color 0.3s ease;
    margin-left: 24vh;
    
}

nav ul li a:hover {
    color: #5beb63;
    
}
nav ul li a::after {
    content: ''; /* Çizgi oluşturmak için boş içerik */
    display: block; 
    width: 0; /* Başlangıçta çizgi görünmez */
    height: 2px; /* Çizginin yüksekliği */
    background-color: #5beb63; /* Çizginin rengi */
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease; /* Yumuşak geçiş efekti */
}

nav ul li a:hover::after {
    width: 100%; /* Üzerine gelindiğinde çizgi genişler */
}

/* Main Section with Background Image */
main {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    padding-top: 80px; /* Fixed header için boşluk */
    background-image: url('back.webp');
}

.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    
   
}

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

.slides {
    display: flex;
    overflow: hidden;
    height: 100%;
}

.slides img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

.dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #5beb63;
}

.right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    
}
.right img{
    width: 100px;
    height: 100px;
    border-radius: 15%;
    margin-bottom: 5%;
    border: 3px solid #ffffff8e; /* Çerçeve kalınlığı ve rengi */
}

.content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 55px;
    border-radius: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease; /* Geçiş süresi ve yumuşaklık */

}
h2:hover{
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
}


.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.button-container a{
    text-decoration: none;
}

/* Button Styles with Transition */
.btn {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    background-color: #5beb63;
    color: #043306;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #5beb63;
    transform: scale(1.1);
}
/* Footer Styles */
footer {
    background-color: black;
    color: #9e9b9d;
    text-align: center;
    padding: 1%;
    position:relative;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.footer-container {
    margin-top: 2%;
    display: inline-flex;
}
.social-media{
    margin-right: 10%;
}
.onem{
    margin-right:10% ;
}
.adres{
    margin-left: 10%;
}



.social-link {
    display: inline-flex;
    margin: 0 3%;
}

.social-link img {
    width: 2.4em;
    height: 2.4em;
    transition: transform 0.3s ease;
}

.social-link img:hover {
    transform: scale(1.1);
}

.links {
    margin-bottom: 2%;
    display: inline-flex;
}

.links p {
    color: white;
}

.links h5 {
    font-size: 1em;
}

.link-link {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #5beb63;
}

.copyright {
    font-size: 0.8em;
    margin-top: 1%;
    color: #5beb63;
}
.slider-info {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    font-size: 25px;
}

.info {
    height: 85%;
    width: 100%;
    background-color: #d7d8d9;
    background-position: center;
    padding: 2%;
    
}


.info p {
    font-size: 1rem;
}

.slider-img {
    position: relative;
    overflow: hidden; /* Taşan resimleri gizle */
    width: 100%; /* Slider container genişliği */
}

.slider-images {
    display: flex; /* Resimlerin yan yana dizilmesi */
}

.slider-images img {
    min-width: 100%; /* Her resim slider'ın %100 genişliğini kaplar */
    height: auto; /* Yüksekliği korur */
}


.slider-images img:hover {
    opacity: 1;
}

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
}

button.prev {
    left: 10px;
 
}

button.next {
    right: 10px;
}
.info h2{
    font-size: 2rem;
    color: #8c45bf;
    margin-top: 25px;
    font-weight: bold;
    font-family: fantasy;
    font-size: 50px;
}
.info p {
    font-size: 13px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #542349;
}
.gif{
    width: 98vw; /* Viewport genişliği kadar geniş */
    height: 98vh; /* Viewport yüksekliği kadar yüksek */
    overflow: hidden; /* Taşan kısmı gizler */
    display: flex;
    align-items: center; /* Dikeyde ortalar */
    justify-content: center; /* Yatayda ortalar */
}
.responsive-gif {
    width: 100%;
    height: 100%;
    object-fit: contain; /* İçeriği kapsayıcıya sığdırır */
    background-image: url('back.webp');
}
.mask{
   
    width: 350%;
    height: 100%; /* Genişlik ayarları */
  
}
.orta{
        height: 75vh;
        display: flex;
        
    background-color: whitesmoke;
}
.orta h1{
    margin-top: 30px;
    font-size: 55px;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #3e9943;
}
.orta p{
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 10%;
    margin-right: 8%;
}
.highlight {
    color: #542349; /* Metin rengini belirler */
}
/* styles.css */

/* Genel hizmetler stili */
.services {
    padding: 40px;
    background-color: #e4e4e4;
    text-align: center;
}
.services h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    color:#542349;
}
.service-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 40px;
}

.service {
    display: flex;
    flex-direction: column;
    width: 320px;
    height: 400px;
    border: 2px solid #ddd; /* Kartın başlangıçtaki kenar rengi */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.service-image {
    flex: 1;
    overflow: hidden;
    transition: transform 0.3s ease;
   
}

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

.service-content {
    padding: 20px;
    background-color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.service-content h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.service-content p {
    margin-bottom: 0;
    font-size: 1em;
    color: #555;
}

/* Hover efekti */
.service:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.service:hover .service-image img {
    transform: scale(1.1);
}
.service::after {
    content: ''; /* Çizgi oluşturmak için boş içerik */
    display: block; 
    width: 0; /* Başlangıçta çizgi görünmez */
    height: 6px; /* Çizginin yüksekliği */
    background-color: #5beb63; /* Çizginin rengi */
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.9s ease; /* Yumuşak geçiş efekti */
}

.service:hover::after {
    width: 100%; /* Üzerine gelindiğinde çizgi genişler */
}
.ortak{
    height: 40em;
    display: flex;
    justify-content: space-between;
    padding-top: 7%; /* Fixed header için boşluk */
    background-image: url('arka.webp');
}
.ortak h1{
margin-top: 4%;
font-size: 3.8em;
text-align: center;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
color: #3e9943;
}
.ortak p{
margin-top: 4%;
font-size: 1.7em;
font-family: 'Times New Roman', Times, serif;
margin-left: 10%;
margin-right: 18%;
}
.telifyazi{
    text-align: left;
}
.cerezyazi{
    text-align: left;
}
.services-list {
    padding: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
}

.service-img {
    width: 40%;
    height: 25%;
    border-radius: 5px;
}
.yazi {
    font-size: 1.2em;
    text-align: center;
}
.service-heading {
    font-size: 1.5em;
    margin: 15px 0 10px;
}

.service-text {
    font-size: 1.5em;
    color: #555;
    margin-top: 2%;
}
.service-item h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3.3em;
    color:#542349;
}
.newright{
margin-right: 29%;
}
.yazi p{
    font-size: 1.3em;
    font-weight: 100;
}
.iletisim{
    background-color: rgba(0, 0, 0, 0.8);
}
.container-c {
    margin-left: 28%;
    max-width: 600px;
    width: 100%;
    padding: 80px;
    background-color: #eeeeee;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.container-c h2{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 3em;
     color:#542349;
     margin-bottom: 12%;
     transition: transform 0.3s ease;
     text-align: center;
     
}
.container-c h2:hover{
    transform: scale(1.1); /* Resmi %110 oranında genişletir */
    
}

.form-group {
    margin-bottom: 20px;
}
label {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #5beb63;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
textarea {
    resize: none;
}
.btn-btn {
    text-align: center;
}

.btn-primary:active {
    transform: scale(0.98);
}
.whatsappmobile {display: none;}
.whatsappmasaustu {width: 150px; position: fixed; bottom: 70px; left: 10px; z-index: 16;}
.whatsappmobile.sagayasla {left: auto; right: 10px;}
.whatsappmasaustu.sagayasla {left: auto; right: 10px;}

.insta-sag {
    width: 150px; /* Genişlik */
    position: fixed; /* Sabit pozisyon */
    bottom: 70px; /* Sayfanın altından 70px yukarıda */
    right: 10px; /* Sağdan 10px içeri */
    z-index: 16; /* Üst üste gelen öğelerin doğru sırada görünmesini sağlar */
}

.insta-sag.sagayasla {
    right: 10px; /* Sağdan 10px içeride */
    left: auto; /* Soldan hizalama iptal */
}
@media screen and (max-width: 1000px) {
    /* Global styles */
    body, html {
        padding: 0;
        height: auto; /* Allow body to adjust height */
    }

    /* Header Styles */
    header {
        flex-direction: column; /* Stack header elements vertically */
        padding: 10px; /* Reduce padding */
    }

    nav ul {
        flex-direction: column; /* Stack navigation items vertically */
        align-items: center; /* Center nav items */
        margin-top: 8px; /* Add space above the nav */
    }

    nav ul li {
        margin-left: 0; /* Remove left margin */
        margin-top: 7px; /* Add top margin for spacing */
    }

    nav ul li a {
        margin-left: 0; /* Remove margin left for links */
        font-size: 0.9em; /* Decrease font size for better fit */
    }

    main {
        padding-top: 60px; /* Adjust top padding for fixed header */
    }

    /* Service Section */
    .service-container {
        flex-direction: column; /* Stack services vertically */
        align-items: center; /* Center services */
        margin: 0; /* Reset margins */
    }

    .service {
        width: 90%; /* Adjust service width for smaller screens */
        margin-bottom: 20px; /* Add margin between services */
    }

    /* Button Styles */
    .btn {
        width: 100%; /* Make buttons full width */
        padding: 12px; /* Reduce button padding */
        font-size: 16px; /* Adjust font size */
    }

.content {
    padding: 45px;
}
.services h2{
    font-size: 50px;
}
    /* Slider Section */

    .slider{
        margin-top: 25%;
    }
    .slider-info {
        font-size: 20px; /* Adjust font size for info */
    }

    .container-c {
        margin-left: 25%; /* Adjust margin for smaller screens */
        padding: 40px; /* Reduce padding */
        max-width: 73%; /* Use more width for smaller screens */
    }

    .container-c h2 {
        font-size: 2.5em; /* Adjust font size for headings */
        margin-bottom: 8%; /* Adjust bottom margin */
    }

    label {
        font-size: 0.9rem; /* Slightly reduce label font size */
    }

    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 0.9rem; /* Adjust input font size */
    }

    .btn-btn {
        margin-top: 20px; /* Add margin on top of the button container */
    }

        main {
            flex-direction: column; /* Stack .left and .right vertically */
            padding-top: 20px; /* Adjust padding for mobile */
            height: auto; /* Allow height to adjust based on content */
     
        }
    
        .left {
            flex: none; /* Remove flex grow/shrink */
            width: 100%; /* Full width for both sections */
            padding: 20px; /* Add padding for better spacing */
            box-shadow: none; /* Optional: remove any shadow if it exists */
         
        }
    
    
        .right {
            display: flex; /* Ensure right section is still a flex container */
            flex-direction: column; /* Stack items in right section vertically */
            align-items: center; /* Center content */
            justify-content: center; /* Center content */
        }
    
        .right img {
            width: 80px; /* Adjust image size */
            height: 80px;
            margin-bottom: 10px; /* Add some space below the image */
        }
    
        .dots {
            bottom: 5px; /* Adjust position of dots */
        }
        .py-5{
            margin-left: -30%;
        }
        .logoko{
            margin-top: 20%;
        }
        .yazi{
            margin-top: 6%;
        }
        /*footer*/
        .footer-container {
            flex-direction: column;
            align-items: center;
        }
    
        .social-media, .links {
            margin-right: 0;
            margin-left: 0;
            margin-bottom: 5%;
            text-align: center;
        }
    
        .social-link {
            margin: 0 2%;
        }
    
        .adres {
            margin-left: 0;
        }
    
        .onem {
            margin-right: 0;
        }
    
        .links {
            flex-direction: column;
        }
    
        .links h5 {
            font-size: 1.2em;
            margin-bottom: 0.5em;
        }
    
        .copyright {
            font-size: 0.7em;
            margin-top: 5%;
        }
        .ortak {
            flex-direction: column; /* Stack elements vertically */
            height: auto; /* Allow height to adjust to content */
            padding-top: 5%; /* Adjust padding for smaller screens */
            text-align: center; /* Center text for smaller screens */
            margin-top: 24%;
        }
    
        .ortak h1 {
            font-size: 2.5em; /* Reduce font size for headings */
            margin-top: 2%; /* Adjust top margin */
        }
    
        .ortak p {
            font-size: 1.2em; /* Reduce font size for paragraph */
            margin-left: 5%; /* Adjust margins for better readability */
            margin-right: 5%; /* Adjust margins for better readability */
            line-height: 1.5; /* Improve line spacing */
        }
        .orta {
            flex-direction: column; /* Stack elements vertically */
            height: auto; /* Allow height to adjust to content */
            padding: 20px; /* Add padding for spacing */
        }
    
        .orta h1 {
            font-size: 2.5em; /* Reduce font size for headings */
            margin-top: 15px; /* Adjust top margin */
        }
    
        .orta p {
            font-size: 1.1em; /* Reduce font size for paragraph */
            margin-left: 5%; /* Adjust left margin */
            margin-right: 5%; /* Adjust right margin */
            line-height: 1.5; /* Improve line spacing */
        }
    
        .newright {
            display: flex; /* Ensure the image section remains visible */
            justify-content: center; /* Center the image */
            margin-top: 20px; /* Add margin above the image */
        }
    
        .mask {
            width: 80%; /* Make the image responsive */
            max-width: 300px; /* Set a maximum width for the image */
            height: auto; /* Maintain aspect ratio */
        }
    }