/********** Template CSS **********/
:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

.fw-medium {
    font-weight: 600 !important;
}


.service-section {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #002e6e;
  }
  
  .section-description {
    font-size: 16px;
    margin: 20px auto;
    max-width: 800px;
    color: #555;
  }
  
  .row-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    flex-wrap: wrap; /* Mobil uyumluluk */
  }
  
  .image-column {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .text-column {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .feature-item {
    flex: 1 1 calc(50% - 10px); /* 2 item yan yana */
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item h3 {
    font-size: 18px;
    color: #002e6e;
    margin-bottom: 10px;
  }
  
  .feature-item p {
    font-size: 14px;
    color: #666;
  }
  
  .buttons {
    margin-top: 30px;
  }
  
  .btn {
    padding: 10px 20px;
    margin: 5px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #007bff;
    color: #fff;
  }
  
  .btn-danger {
    background-color: #dc3545;
    color: #fff;
  }
  


  .service-section {
    padding: 40px;
    text-align: center;
    background-color: #ffffff;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #002e6e;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.block {
    flex: 1 1 300px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.block h3 {
    font-size: 18px;
    color: #002e6e;
    margin-bottom: 10px;
}

.block p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.highlighted-block {
    border: 2px solid #002e6e;
}

.highlighted-block h3 {
    font-size: 20px;
    font-weight: bold;
}

.highlighted-block p {
    font-size: 15px;
}

.highlighted-block a {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #002e6e;
    text-decoration: none;
    font-weight: bold;
}

.highlighted-block a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .block {
        max-width: 100%;
    }
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.fixed-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; /* Görselin arka planda kalması için */
    width: 100%;
    height: 100%;
}









.description {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; /* Center the container horizontally */
    text-align: center; /* Center the text inside the container */
}

.description h2 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 20px;
}

.description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


.gallery-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Kare oranını korumak için */
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 150, 0.5), rgba(0, 204, 255, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .description h2 {
        font-size: 1.5rem;
    }

    .description p {
        font-size: 0.9rem;
    }
}

.owl-carousel .item {
    position: relative;
}

.owl-carousel .item img {
    width: 100%; /* Görselin genişliği %100 olacak şekilde ayarlandı */
    height: auto; /* Yükseklik oranı korunsun */
    object-fit: cover; /* Görsel alanı tamamen kaplayacak şekilde kesilsin */
    border-radius: 10px; /* Opsiyonel: görsele yuvarlak köşe ekler */
}

.owl-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Öğeler arasında boşluk bırakır */
}

.owl-carousel .item {
    width: 100%;
    max-width: 300px; /* Her bir öğe için maksimum genişlik */
    margin: 0 auto; /* Öğeleri container içinde ortalar */
}

.carousel-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    animation: scroll 20s linear infinite; /* Sonsuz döngü animasyonu */
}

.carousel-item {
    min-width: 200px; /* Aynı boyutta kartlar */
    margin: 0 10px;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    width: 100%; /* Resimler aynı boyutta olacak */
    height: 150px; /* Aynı yükseklikte olacak */
    object-fit: cover; /* Resimleri düzgün keser */
}

@keyframes scroll {
    0% {
        transform: translateX(0); /* Başlangıçta sol tarafa kaymaya başlar */
    }
    100% {
        transform: translateX(-500%); /* Tüm öğeler kayacak şekilde */
    }
}


.floating-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
  }
  
  .floating-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .floating-icons img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .floating-icons .whatsapp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  @media (max-width: 600px) {
    .floating-icons {
        bottom: 10px;
        right: 10px;
    }
  
    .floating-icons a {
        width: 50px;
        height: 50px;
    }
  
    .floating-icons img {
        width: 100%;
        height: 100%;
    }
  }
  
  




.container {
    max-width: 1200px;
    margin: auto;
}
.service-box {
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.service-box img {
    width: 100%;
    height: auto;
}
h5 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.logo-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    animation: scrollLogos 15s linear infinite;
    gap: 0; /* Bu boşluk kaldırıldı */
}

.carousel-item {
    margin-right: 80px; /* Logolar arası boşluk */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    width: 100px; /* Daire genişliği */
    height: 100px; /* Daire yüksekliği */
    border-radius: 50%; /* Daire görünümü */
    overflow: hidden; /* Taşma gizlenir */
    background: #fff; /* Dairenin arka planı */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
    border: 2px solid #ddd; /* Dairenin çerçevesi */
}

.logo-wrapper img {
    width: 80%; /* Logonun boyutlanması */
    height: 80%; /* Logonun boyutlanması */
    object-fit: contain; /* Logonun düzgün yerleşimi */
}

/* Animasyon */
@keyframes scrollLogos {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.top-bar {
    height: 75px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/beyaz-esya-servisi.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/elektronik-servis.png) center center no-repeat;
    background-size: cover;
}


/*** Service ***/
.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}




.baslik-alani {
    background-color: #002d72;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.baslik-alani h1 {
    margin: 0;
    font-size: 1.8rem;
}

.icerik-konteyner {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.icerik-bolumu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    align-items: center;
}

.icerik-resim {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
}

.icerik-resim img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.icerik-metni {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 20px;
}

.icerik-metni h2 {
    font-size: 1.5rem;
    color: #002d72;
    margin-bottom: 10px;
}

.icerik-metni p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.dugme {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #002d72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.dugme:hover {
    background-color: #0056b3;
}

.ikon-alani {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.ikon-alani img {
    width: 30px;
    height: 30px;
}

.ikon-alani span {
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .icerik-bolumu {
        flex-direction: column;
        text-align: center;
    }

    .icerik-resim,
    .icerik-metni {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .icerik-resim img {
        border-radius: 8px 8px 0 0;
    }
}



/* Genel stil */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #f1f1f1;
    animation: fadeIn 2s ease-in;
}

.hero h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #0056b3;
}

/* Servis kutuları */
.servis {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 10px;
}

.momey {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1 1 calc(33% - 20px);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.momey:hover {
    transform: translateY(-10px);
}

.momey-info {
    padding: 20px;
}

.momey-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.momey-info p {
    font-size: 16px;
    color: #666;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .servis {
        flex-direction: column;
        align-items: center;
    }

    .momey {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .btn {
        font-size: 16px;
    }
}

/* Animasyon */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Resim stil */
.service-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}




/* Ana konteyner */
.contaim {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 40px; /* margin-top ekledim */
 }
 
 /* Sol taraf (Görsel) */
 .image-section {
    width: 45%;
 }
 
 .image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 }
 
 /* Sağ taraf (Sıkça Sorulan Sorular) */
 .faq-section {
    width: 50%;
 }
 
 .faq-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
 }
 
 /* FAQ Item */
 .faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
 }
 
 .faq-item:hover {
    transform: scale(1.02);
 }
 
 .faq-title {
    padding: 20px;
    background-color: #007bff;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
 }
 
 .faq-title:hover {
    background-color: #0056b3;
 }
 
 .faq-title i {
    margin-right: 10px;
 }
 
 .faq-content {
    padding: 15px 20px;
    background-color: #f9f9f9;
    display: none;
    font-size: 16px;
    color: #555;
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
 }
 
 .faq-content.show {
    display: block;
    max-height: 500px;
 }
 
 /* Responsive tasarım */
 @media (max-width: 768px) {
    .contaim {
        flex-direction: column;
        align-items: center;
    }
 
    .image-section, .faq-section {
        width: 100%;
        margin-bottom: 20px;
    }
 
    .faq-section h2 {
        font-size: 20px;
    }
 
    .faq-title {
        font-size: 18px;
    }
 
    .faq-content {
        font-size: 14px;
    }
 }




 /* Genel Stil */
.mt-container {
    text-align: center;
    padding: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mt-grid-item {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mt-grid-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mt-grid-item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mt-grid-item:hover i {
    color: #ff6347; /* İkon rengi değişiyor */
    transform: rotate(360deg); /* Animasyonla döner */
}

.mt-grid-item p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.cta {
    margin-top: 20px;
}

.cta button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta button:hover {
    background-color: #0056b3;
}

/* Ana konteyner */
.контейнер {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Görsel kapsayıcı */
.сүрөт-кантири {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Görsel */
.сүрөт {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görselin tamamını kapsaması için */
    display: block;
}

/* Yazı alanı kapsayıcı */
.жазуу-кантири {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
}

/* Yazı alanı */
.жазуу {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 80%;
    box-sizing: border-box;
}

/* Başlık stili */
.жазуу h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Paragraf stili */
.жазуу p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Buton stili */
.сервис-туймө {
    font-size: 1.2rem;
    color: white;
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.сервис-туймө:hover {
    background-color: #0056b3;
}

/* Mobil uyumlu tasarım */
@media screen and (max-width: 768px) {
    .жазуу h1 {
        font-size: 2rem; /* Mobilde başlık boyutunu küçültüyoruz */
    }

    .жазуу p {
        font-size: 1rem; /* Mobilde paragraf font boyutunu küçültüyoruz */
        padding: 0 10px;
    }

    .жазуу {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .жазуу h1 {
        font-size: 1.5rem; /* Küçük ekranlarda başlık daha da küçülür */
    }

    .жазуу p {
        font-size: 0.9rem; /* Küçük ekranlarda yazı boyutu daha da küçülür */
    }

    .сервис-туймө {
        font-size: 1rem; /* Buton boyutu küçültülür */
        padding: 8px 15px;
    }
}