.liststyle {
    list-style: none;
    margin-right: 30px;
}

.pita-logo img {
    height: 100%;
    max-height: 100px;
    width: auto;
    object-fit: contain;
  }

.icon {
    font-size: 18px;
    color: #555555;
    margin-right: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #555555;
}

.header-top {
    padding: 10px;
    background-color: #f9f8fc;
}

.social-box {
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-box:hover {
    transform-origin: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.social-list {
    list-style: none;
    border: 1px solid #55555538;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.social-list a {
    font-size: 20px;
    margin: 0px;
}

.social-list:hover {
    background: #F5BF23;
    color: #ffffff;
    border: 1px solid #F5BF23;
}

.social-list:hover a {
    transform-origin: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
    color: #ffffff;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.header-body {
    margin-top: 30px;
    position: sticky;
    margin-bottom: 30px;
}

.pita-nav button {
    border-radius: 35px;
    width: 180px;
    border: 2px solid #ffc107;
    transition: background-color 0.3s ease;
    max-height: 70px;
    min-height: 50px;
    align-self: center;
}

.pita-nav button:hover {

    background-color: transparent;
    scale: 1.1;
    transition: scale 0.3s ease;

}

.nav-link {

    font-size: 18px;
}

.nav-link:hover {
    color: #ffc107 !important;
    scale: 1.1;
    transition: scale 0.3s ease;
}

.car-images {
    height: 80vh;
    width: 100%;
    object-fit: cover;
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    background: transparent;
    padding: 20px 30px;
    border-radius: 10px;
    color: #fff;
    text-align: left;
    max-width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-color: rgba(0, 0, 0, 0.3); /* Siyah arka plan, %60 opaklık */
    padding: 20px;
    border-radius: 10px;
}

.carousel-item.active .carousel-caption {
    opacity: 1;
}

.carousel-caption h2 {
    align-self: center;
    font-size: 60px;
    font-weight: 1000;
    color: #F5BF23;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
}

.project-title h2{
    align-self: center;
    font-size: 60px;
    font-weight: 1000;
    color: #F5BF23;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

.services-title h3{
    align-self: center;
    font-size: 40px;
    font-weight: 1000;
    color: #F5BF23;
    text-align: right;
    margin-bottom: 20px;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

.service-list li{
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 5px;
    text-align: left;
}

.carousel-caption p {
    align-self: center;
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    text-align: left;
    margin-bottom: 20px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.caption-btn {
    align-self: center;
    justify-self: end;
    margin-top: 46px;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 100%;
    /* 30%'u 100% yap */
    color: #f2f5f5;
    background-color: #F5BF23;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 35px;
    border: 2px solid #ffc107;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    /* padding ile taşmayı engeller */
    white-space: normal;
    /* gerekirse satır kaydırır */
}

.caption-btn:hover {
    border: 2px solid #ffc107;
    color: #f2f5f5;
    background-color: transparent;
}

.caption-btn:active {
    border: 2px solid #ffc107;
    color: #f2f5f5 !important;
    background-color: #F5BF23;
}




.pita-footer {
    background-color: #ffd34f;
    padding-top: 50px;
    padding-bottom: 30px;
}

.location-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-text {
    color: #333;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.location-text:hover {
    color: #ffffff !important;
}

.location-link .line {
    position: relative;
    width: 30px;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
}

.location-link:hover .line {
    width: 50px;
}

.location-link:hover .location-text {
    transform: translateX(10px);
}

.copyright-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.copyright-text {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.footer-quick-access li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    margin-left: -30px;
}

.footer-quick-access li:hover {
    scale: 1.1;
    transition: scale 0.3s ease;
}

.footer-quick-access a {
    color: rgb(15, 15, 15);
}

.footer-quick-access a:hover {
    color: #ffffff !important;
}

.footer-quick-access a:hover {
    color: #F5BF23;
}

.footer-quick-access p {
    font-size: 16px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
}

.footer-quick-access h3 {
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
}

.pita-projects {
    background-color: #f1f1f1;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.pita-projects h1 {
    font-size: 35px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
}

.shell {
    padding: 20px 0;
}

.wsk-cp-product {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    position: relative;
    margin: 20px auto;
}

.wsk-cp-img {
    aspect-ratio: 1 / 1;
    /* Kare yapar */
    overflow: hidden;
    position: relative;
    padding: 0;
    /* padding varsa kaldır */
}

.wsk-cp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmi taşmadan sığdırır ve kırpar */
    border-radius: 6px;
}

.wsk-cp-product:hover .wsk-cp-img {
    top: -40px;
    transition: all 0.3s ease;
}

.wsk-cp-product:hover .wsk-cp-img img {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
}


.wsk-cp-text .category {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    margin-bottom: 45px;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.wsk-cp-text .category>* {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    margin-bottom: 20px;

}

.wsk-cp-text .category .btn-project {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 100;
    padding: 12px 30px;
    border: 1px solid #F5BF23;
    background: #F5BF23;
    color: #fff;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    border-radius: 33px;
    transition: all 0.05s ease-in-out;
    width: 70%;
}

.wsk-cp-text .category .btn-project:hover {
    padding: 12px 30px;
    border: 1px solid #F5BF23;
    background: transparent;
    color: #000;
    border-radius: 27px;
    box-shadow: 0 19px 38px #F5BF23, 0 15px 12px #F5BF23;
    transition: all 0.05s ease-in-out;

}

.wsk-cp-product:hover .wsk-cp-text .category .btn-project {
    box-shadow: none;
    padding: 11px 28px;
    transition: all 0.3s ease;
}

.wsk-cp-product:hover .wsk-cp-text .category {
    margin-top: 0px;
    transition: all 0.3s ease;
}

.wsk-cp-text .title-product {
    text-align: center;
}

.wsk-cp-text .title-product h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 15px auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.wsk-cp-text .description-prod p {
    margin: 0;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    text-align: center;
}

.wsk-cp-text .description-prod{
    padding: 20px 20px 0px 20px;
}

/* Truncate */
.wsk-cp-text .description-prod {
    text-align: center;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}






@media screen and (max-width: 991px) {
    .wsk-cp-product {
        margin: 40px auto;
    }

    .wsk-cp-product .wsk-cp-img {
        top: -40px;
    }

    .wsk-cp-product .wsk-cp-img img {
        box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    }

    .wsk-cp-product .wsk-cp-text .category .btn-project {
        border-color: #ddd;
        box-shadow: none;
        padding: 11px 28px;
    }

    .wsk-cp-product .wsk-cp-text .category {
        margin-top: 0px;
    }
    
}

.pita-contacts {
    background-color: #f1f1f1;
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.pita-contacts h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 100;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.contact-icon {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 50px;
    color: rgba(0, 0, 0, 0.70);
}

.contact-icon:hover {
    scale: 1.1;
}

.contact-icon-title {
    font-size: 20px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.contact-icon-content {
    font-size: 16px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.map-container {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 88%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.contact-btn {
    border-radius: 35px;
    width: 180px;
    border: 2px solid #ffc107;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {

    background-color: transparent;
    scale: 1.1;
    transition: scale 0.3s ease;

}




.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content {
    display: flex;
    flex-direction: row;
}

.modal-body {
    width: 100%;
}

#exampleFormControlTextarea1 {
    resize: none;
}

.btn-close {
    position: absolute;
    right: 0;
    top: 0;
}

.modal-title {
    font-size: 20px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    position: absolute;
    top: 0;
}

.modal-teklif {
    width: 1111px !important;
}

.about-title {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 15vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    margin-bottom: 20px;
}

.about-title h2 {
    font-size: 60px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #F5BF23;
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 100px;
}

.about-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;

}

.about-container h3 {
    font-size: 35px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.about-container p {
    font-size: 19px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}


.about-text{
    text-align: left;
    padding-top: 30px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 50px;
}

.about-text2{
    text-align: left;
    padding-top: 30px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
}
.about-title2{
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}
.pita-about {
    background-color: #f1f1f1;
    padding-bottom: 10px;
    text-align: center;
}

.pita-services {
    background-color: #f1f1f1;
    padding-bottom: 10px;
    text-align: center;
}

.services-row{
    padding: 30px 30px 0px 30px;
    border-radius: 10px;
    background-color: #fefefe;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}


.services-row2{
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    background-color: #fefefe;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}


.about-image1 img{
    position: relative;
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

.services-image1 img{
    position: relative;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
    margin-bottom: 50px;
}
.pita-projects {
    background-color: #f1f1f1;
    padding-bottom: 10px;
    text-align: center;
    padding-top: 0px;
}

.custom-modal-width {
    max-width: 800px;
    width: 90%;
}

@media (max-width: 600px) {

    .carousel-caption{
        display: none;
    }
        
    .about-title h2{
        font-size: 40px;
    }

    .services-title h3{
        font-size: 25px;
    }

    .project-title h2{
        font-size: 25px;
    }
    

}

@media (max-width: 768px) {
   
    .about-title h2{
        font-size: 45px;
    }

    .services-title h3{
        font-size: 30px;
    }

    .project-title h2{
        font-size: 30px;
    }
}

@media (max-width: 1200px) {
    .custom-modal-width {
        max-width: 95vw;
        width: 95vw;
    }

    .navbar-nav {
        display: none !important;
    }

    .liststyle {
        display: none !important;
    }

    .header-top>.container .social-box {
        position: absolute;
        left: 30px;
        top: 10px;
    }

    .header-top {
        height: 60px;
    }

    .hamburger-menu {
        display: block !important;
        z-index: 2 !important;
    }

    .carousel-caption h2 {
        font-size: 30px;
    }

    .carousel-caption p {
        font-size: 18px;
    }

    .about-title h2{
        font-size: 50px;
    }

    .services-title h3{
        font-size: 35px;
    }

    .project-title h2{
        font-size: 35px;
    }
}

.pita-footer .social-box{
    position: relative;
    left: -100px;
    top: 0px;
}

.dropdown-menu {
    border: none !important;
    list-style: none !important;
    background-color: #f1f1f1 !important;
    border-radius: 10px !important;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
    padding: 10px !important;
    margin: 10px !important;
    border: 1px solid #c9c9c9 !important;
}

.dropdown-divider {
    border-color: #c9c9c9 !important;
}

.dropdown-item {
    font-size: 18px !important;
    font-weight: 100 !important;
    font-family: 'Poppins', sans-serif !important;
    color: rgb(15, 15, 15) !important;
    padding: 10px !important;
    margin: 10px !important;
    background-color: #f1f1f1 !important;
}

.dropdown-item:hover {
    color: #F5BF23 !important;
}





.dropdown-toggle::after {
    display: none;
}

.header-top-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hamburger-menu {
    display: none;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 9999;
    padding: 10px;
}

.hamburger-menu i:hover {
    scale: 1.3;
    transition: scale 0.3s ease;
    color: #F5BF23;
}

.project-details-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    min-height: 50px;
}

.back-to-projects {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
}

.project-details-title h2 {
    margin: 0 auto;
    font-size: 35px;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    justify-self: center;
}

.project-details-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.project-details-image {
    flex: 1 1 300px;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 300px;
}


.service-details-image {
    flex: 1 1 800px;
    width: 70%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
    max-width: 70%;
    max-height: 250px;
    object-fit: contain;
}
.service-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: transparent;
    object-fit: cover;
    display: block;
}

.service-details-list {
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
    width: 70%;
    margin-top: 30px;
  
}

.services-info-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.service-details-list li {
    font-size: 18px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.project-details-image:hover {
    scale: 1.1;
    transition: scale 0.3s ease;
    border-radius: 5px;
}

.project-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: transparent;
    object-fit: cover;
    display: block;
}

.project-details-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    width: 50%;
}


.project-details-table-title{
    font-size: 26px;
    font-weight: 200;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}

.project-details-table-content{
    font-size: 20px;
    font-weight: 100;
    font-family: 'Poppins', sans-serif;
    color: rgb(15, 15, 15);
    margin-bottom: 20px;
}
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 30px #000;
}

.pita-project-details {
    padding-bottom: 20px;
    background-color: #f1f1f1;
}

.scrollable-box {
    max-height: 700px;      /* Dikey yükseklik sınırı */
    overflow-y: auto;       /* Dikeyde scroll aktif */
    padding: 10px;
    background: #eeeeee;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  .scrollable-box::-webkit-scrollbar {
    width: 8px;
  }
  
  .scrollable-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
  }
  
  .scrollable-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 6px;
  }

  .project-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh; 
    background: #f1f1f1;
    padding: 20px;
  }
  
  .project-info-card {
    background: #efefef;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
  }
  
  .project-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
  }
  
  .project-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .project-table th {
    text-align: left;
    color: #777;
    padding: 10px 0;
    width: 120px;
    vertical-align: top;
  }
  
  .project-table td {
    padding: 10px 0;
    color: #444;
  }

  