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





html {
    scroll-behavior: smooth;
    overflow-x: hidden;
   
    
   
  
}


body{
    overflow-x: hidden;
}
 section {
    scroll-margin-top: 100px; /* Başlığınızın yüksekliğine göre bu değeri ayarlayın */
}


nav {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    height: 600px;
    width: 100%;
    background-image: url('images/leather.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    transition: 1s;
}



.back{
    font-size: 50px;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 200px;

}

.back a{
    text-decoration: none;
}

.back i:hover{
    color: #ffc800 !important;
}

.welcome p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "Merriweather", serif;
    font-size: 55px;
    color: #ffffff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 400px;
}

.welcome .first,
.welcome .second,
.welcome .third {
    opacity: 0;
    animation: fadeInOut 9s infinite;
}

.welcome .first { animation-delay: 0s; }
.welcome .second { animation-delay: 0.3s; }
.welcome .third { animation-delay: 0.3s; }

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    25%, 75% { opacity: 1; }
}


.bayrak{
width: 30px;
height: 20px;
}

.language{
    display: flex;
    justify-content: right;
    position: absolute;

    padding-right: 10px;
    right: 20px;
    top: 12px;
}

.language a{
text-decoration: none;
color: white;
transition: 0.3s;


}
.language p{
    color: white;
    font-size: 1.1rem;
}

.language a:hover{
    color: #ffc800;
}





.container{
    padding: 30px 50px;
}

.menu {
    
    width: 100%;
    padding: 20px 0;
    
    transition: background-color 0.3s ease;
    position: relative;
}






li{
    list-style: none;
    padding: 10px;
    font-size: 1.3rem;
    color: white;
    transition: 0.3s;
}

ul{
    margin-top: 10px;
    right: 30px;
    position: absolute;
    display: flex;
    cursor: pointer;
    
    
}

.menu{
    transition: 0.4s;
}

.menu a{
    text-decoration: none;
    color: #f8f9fa;
    transition: 0.3s;
}

.menu a:hover{
color: #ffc800;

}

.menu img{
margin-top: -50px;
height: 200px;
width: 200px;
position: absolute;
top: 0;
left: 50px;

}

.menu.sticky {
    position: fixed;
    z-index: 1000 !important;
    opacity: 1000 !important;
    padding-bottom: 30px;
    background-color: #212529;
    width: 100%;
    top: 0;
    left: 0;
    padding: 5px 50px 5px 50px;
}

.menu.sticky a{
    color: #ced4da;
    font-size: 1rem;
    z-index: 1000;
    position: relative;
    bottom: 70px;
}

.menu.sticky a:hover{
    color: #ffc800;
}

.menu.sticky img{
    position: relative;
    height: 80px;
    margin-top: 3px;
    width: 80px;
}

header{
    z-index: -100 !important;
}

.dropdown{
display: flex;
justify-content: right;
display: none;

}
  .dropdown-menu {
    background-color: #212529 !important;
  }

  .dropdown-item {
    color: white !important;
 }
  .dropdown-item:hover {
    background-color: #ffc800 !important;
    color: #212529 !important;
  }




.bar{
    width: 70px;
    
}

.bar i{
    padding-left: 10px;
}



.welcome{
margin-top: 30px;
color: white;
 

}


.btnn{
    position: absolute;
    letter-spacing: 1px;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    font-size: 18px;
    color: white !important;
    width: 300px;
    height: 69px;
    padding: 20px 40px;
    background-color: #ffc800;
    border: 1px solid #ffc800;
    border-radius: 10px;
    margin-top: 80px;
    cursor: pointer;
}

.btnn:hover{

    opacity: 0.8;
}

.btnn a{
    text-align: center;
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    color: #212529;
}




#center{
    text-align: center;
    padding-top: 30px;
}

#Products{
    position: relative;
    margin: 40px;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    max-width: 100%;
    background: linear-gradient(to left, #e0eafc, #cfdef3); /* Açık Gri Mavi-Açık Mavi Beyaz */

    height: 700px;
  
 
  
    z-index: 0;
    color: white;
}

#Products h1{
color: #2c3e50;
opacity: 1000;    

}

#Products .container{
    width: 800px;
    display: block;
    justify-content: center;
    text-align: center;
    align-items: center !important;
}


.container .category{
    border: 1px solid gray;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center !important;
    transition: transform 0.3s ease; /* Hareketin süresi ve geçiş hızı */

}


.container .category:hover {
    transform: translateX(5px); /* Sağ tarafa hareket */
}



.container .category:hover {
    animation: shake 0.5s ease;
    color: #ffc800;
}

@keyframes shake {
    0% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.category a{
    text-decoration: none;
    transition: 0.3s;
    color: white;

}

.category h1{
    color: white !important;
}

.category a:hover{
    color: #ffc800 !important;
}
.verticalline{
    position: absolute;
    color: black;
    width: 1px;
    height: 270px;
    border: 1px solid black;
    top: 25%;
    left: 50%;

}



.category h1:hover{
    color: #ffc800;
}
#category-1{
    background-image: url(images/try18.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#category-2{
    background-image: url(images/try19.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
#category-3{
    background-image: url(images/try20.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#category-4{
    background-image: url(images/try21.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}





 
/* #Products .carousel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
  }
 #Products .carousel-wrapper {
  height: 450px;
  width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  overflow-x: hidden;
  overflow-y: hidden;
  


  }

#Products  #wrapper{
    cursor: zoom-in;
  }
 #Products .carousel-item img {
height: 100%;
width: 100%;
object-fit: cover;
transition: .2s linear;
  }

 #Products .carousel-item img:hover{
    transform: scale(1.8);

  } */




 .carousel {
    width: 90%;
  }

section{

    padding:10px 40px;
    background-color: white;
}

#About{
    margin: 40px;
    position: relative;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    background: linear-gradient(to right, #e0eafc, #cfdef3); /* Açık Mavi Beyaz-Açık Gri Mavi */

max-width: 100%;
}



#About h2{
    
    
    
    color: #2c3e50;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: 40px;
    font-size: 40px;

}

.about{
    opacity: 10000;
    color: white;
    margin-top: 100px;
    height: 400px;
    display: flex;
    justify-content: space-between;
}


.about h3{
    height: 200px;
    color: #2c3e50;
    font-size: 19px;
    padding: 10px;
    opacity: 1000 !important;
    width:300px;
    margin-top: 20px;
    margin-right: 100px;
}

.about img{
    border-radius: 500px;
    height: 440px;
    width: 350px;
    margin-left: 130px;
    margin-top: -70px;
    transition: 0.6s;
}

.about img:hover{
    transform: rotate(360deg); /* Resmi döndürme efekti */

}

 .about button{
    position: absolute;
    width: 80px;
    height: 40px;
    text-align: center;
    align-items: center;
    font-size: 13px;
    top: 400px;
    right: 350px;
    margin-top: 30px;


 }

 .about a{
    color: white;
    text-decoration: none;
 }


.card{
    z-index: 0;

}



#Workshop{
    margin: 40px;
    position: relative !important;
    height: 600px;

    background: linear-gradient(to right, #e0eafc, #cfdef3); /* Açık Mavi Beyaz-Açık Gri Mavi */

    background-size: cover;
   
}

.abpart{
    display: flex;
    justify-content: space-between;
}


#Workshop h1{
    margin-top: -20px;
    color: black;
}

#Workshop .carousel{
    margin-top: 60px;
    width: 1000px;
    position: absolute;
    left: 5%; /* Centers the carousel */
    
}



#Workshop #carouselExample{
    width: 800px;
    height: 345px;

}

#Workshop .carousel-item{
    width: 100%;
    height: 345px;
    object-fit: cover;
    justify-content: center;
    position: relative;

}

#Workshop p{
    color: black;
    padding: 5px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.7px;
    font-size: 17px;
    top: 136px;
    width: 300px;
    height: 448.34;
    position: absolute;
    right: 5%;


}
/* Genel sıfırlama stil kuralları */


/* Contact bölümünün stil ayarları */
#Contact {
    margin: 40px; /* Sağdan ve soldan margin sıfırlanır */
    padding: 0; /* Padding sıfırlanır */
}

section#contact {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto; /* Merkezde hizalama için */
    padding: 0;
    width: 100%; /* Tam genişlikte olmasını sağlamak için */
    background-color: #212529;
    background-image: url("images/map-image.png");
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}

/* İçerik stil ayarları */
section#contact .section-heading {
    color: #fff;
}

section#contact form#contactForm .form-group {
    margin-bottom: 1.5rem;
}

section#contact form#contactForm .form-group input,
section#contact form#contactForm .form-group textarea {
    padding: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

section#contact form#contactForm .form-group input.form-control {
    height: auto;
}

section#contact form#contactForm .form-group-textarea {
    height: 100%;
}

section#contact form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
}

section#contact form#contactForm p.help-block {
    margin: 0;
}

section#contact form#contactForm .form-control:focus {
    border-color: #ffc800;
    box-shadow: none;
}

section#contact form#contactForm ::-webkit-input-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
}

section#contact form#contactForm :-moz-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
}

section#contact form#contactForm ::-moz-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
}

section#contact form#contactForm :-ms-input-placeholder {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #ced4da;
}

#Address{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(to left, #e0eafc, #cfdef3); /* Açık Gri Mavi-Açık Mavi Beyaz */
    position: relative;
    margin: 40px;   
    height: 450px; 
}


#Address h1{
color: #2c3e50;
}


.map{
margin-top: 30px;
padding: 10px 30px;
display: flex;
justify-content: space-between;


}

.map .harita{
    width: 900px;
    height: 250px;
    position: absolute;  
    top: 140px;  
    left: 30px;
}

.map p{
    color: #2c3e50;
    font-size: 1.7rem;
    width: 250px;
    position: absolute;
    right: 30px;
   
}

#social{
    margin: 40px;
    background: linear-gradient(to right, #bdc3c7, #2c3e50); /* Açık Gri-Koyu Gri */

    height: 250px;
}

#social h1{
    color: #f0f0f0;
}

.social-app {
    display: flex;
    justify-content: center;
    font-size: 40px;
}

#social button {
    border: 1px solid white;
    margin: 30px 20px; /* Butonlar arasında yatay boşluk */
    text-align: center;
    padding: 1px;
    border-radius: 50%; /* Tam yuvarlak */
    background-color: linear-gradient(to right, #bdc3c7, #2c3e50); /* Açık Gri-Koyu Gri */; 
    transition: background-color 0.3s ease, transform 0.3s ease; /* Hover geçiş efekti */
}

#social button:hover {
    background-color: #212529; /* Hover durumunda arka plan rengi */


}

#social i:hover{
    color: #f0f0f0;
}



#social i {
    color: black;
    width: 3.5rem;
    height: 3.5rem; /* İkonların yuvarlak butona uyacak şekilde boyutlandırılması */
    border-radius: 50%; /* Tam yuvarlak */
    font-size: 2rem;
    line-height: 3.5rem; /* İkonu ortalamak için */
    display: flex;
    align-items: center;
    justify-content: center;
}




footer{
    
    background-color: #212529;
    text-align: center;
    color: white;
    align-items: center;
    height: 30px;
    padding: 4px;
}


footer i{
    padding-left: 3px;
}







@media screen and (max-width:1200px) {
    .menu img {
        height: 150px !important;
        width: 150px !important;
        margin-left: -80px;
        padding-top: 30px;        
    }

    .first-menu ul {
        margin-right: -70px !important;
    }

    .first-menu li {
        font-size: 20px !important;
        padding: 8px !important;
    }

    .language {
        position: absolute;
        right: 0px;
    }

    .bayrak {
        width: 22px;
        height: 15px;
    }

    .menu.sticky {
        padding-bottom: 0px;
        background-color: #212529;
        height: 80px;
        width: 100%;
        top: 0;
        left: 0;
        padding: 3px 50px 3px 50px !important;
    }
    
    .menu.sticky a {
        color: #ced4da;
        font-size: 1rem;
        z-index: 1000;
        position: relative;
        bottom: 65px;
        margin-right: 30px !important;
    }

    .menu.sticky li{
        margin-left: -30px;
        padding-right: 20px !important;
    }

   

    .menu.sticky img {
        position: relative;
        margin-top: -20px;
        height: 100px !important;
        width: 100px !important;
        padding-left: 30px;
    }

    .welcome p{
        font-size: 40px !important;

    }

    /* Carousel container styles */
    .carousel-container {
        
        gap: 10px; /* Aralık ekleyelim */
    }

    .carousel-wrapper {
        width: 40% !important;
    }

    #Workshop .carousel-control-prev,
    #Workshop .carousel-control-next {
        position: absolute;
        top: 50%; /* Yatay olarak ortala */
        transform: translateY(-50%);
    }

    #Workshop .carousel {
        width: 350px !important;
        height: 220px !important; 
        position: absolute;
        top: 60%; /* Yatayda biraz aşağı çekildi */
        left: 50%; 
        transform: translate(-50%, -50%); 
    }

    #Workshop p {
        font-size: 14px;
        width: 80%; /* Yazıyı biraz daraltarak boşluk sağlandı */
        text-align: center;
        position: absolute;
        top: 30%; /* Yazı ve resim arası boşluk artırıldı */
        left: 50%; 
        transform: translate(-50%, -50%); 
    }
    
    #Workshop .carouselExample {
        width: 350px !important;
        height: 350px !important;
        position: absolute;
        top: 70%; /* Altında, yatayda merkezde */
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav {
        position: relative;
    }

    #Products {
        position: relative;
        max-width: 100%;
        height: 600px !important;
       
    }

    #Products .container{
        width: 400px !important;
    }

    .about h3{
        font-size: 17px !important;
        position: relative;
        right: -100px;

    }
    
    .about img{
        height: 250px !important;
        width: 250px !important;
        margin-left: 10px !important;
        position: relative;
        top: 70px !important;
    }

    .about button{
        right: 100px;

    }

    #Address{
        position: relative;
        height: 500px ;
        padding: 0px;
    }
    
    
    .map .harita{
        width: 350px !important;
        height: 300px;
        margin-right: 10px;
    }
    
    .map p{
        position: absolute;
        font-size: 14px !important;
        top: 220px;
        right: -70px;
        
    
    }
    
    }


    @media screen and (max-width:700px) {

        .dropdown{
            display: flex;
            margin-top: 10px;
            margin-right: -10px;
        }
        
        .dropdown-menu{
            position: relative;
            height: 300px;
            font-size: 13px;
            margin-left: 30px;
        }


        .dropdown-menu .dropdown-item{
            font-size: 13px;
        }

        .menu.sticky img{
            width: 120px !important;
            height: 120px !important;
            position: relative;
            left: 10px;
            top: -10px !important;
        }

        .menu img{
            position: absolute;
            height: 140px !important;
            width: 120px !important;
            left: 80px;
            top: 5px !important;
        }

        .menu.sticky .dropdown{
            position: relative;
            top: -15px !important;
            right: -40px !important;
        }
        
        
        
        .menu.sticky .dropdown-menu{
        padding-left: 20px;
          padding-top: 70px;
                   
        }
        
        .menu.sticky .dropdown-menu .dropdown-item{
            font-size: 13px;
            
        }

        .menu.sticky{
            height: 100px;
        }
        .first-menu{
            display: none;
        }
        
        .language{
            position: relative;
            margin-right: 10px;
            right: -20px !important;
        }

        .bayrak{
            width: 19px;
            height: 13px;
        }

        .altyazi{
            font-size: 13px;
            padding: 2px;
            height: 60px !important;
        }

        .altyazi a:hover{
            font-size: 14px !important;
        }

        .welcome p{
            font-size: 30px !important;
            width: 300px;
        }
        
       
        
   
        .welcome .btnn{
            font-size: 13px;
            margin-top: 100px;
            width: 200px;
            height: 60px;
        }
        
        #Products .container{
            width: 230px !important;

        }
        
    

        .verticalline{
            display: none;
        }

          .about img{
                
            position: relative !important;
            left: -40px;
            width: 150px !important;
            height: 150px !important;
            top: 140px !important;
        }

        .about h3{
            font-size: 10px !important;
            position: absolute;
            width: 135px !important;
            right: -80px;
            top: 140px;
        }

        .about button{
            right:70px;
        }

    #Workshop{
        height: 500px;
    }
        
    #Workshop .carousel {
        width: 300px !important;
        height: 300px !important;
        position: absolute;
        top: 200px;
        left: 50%;
        transform: translateX(-50%);
    }

   

  
    #Workshop .carouselExample {
        width: 300px !important;
        height: 300px !important;
        position: relative;
        top: 20px !important;
        left: 50%;
        transform: translateX(-50%);
    }

    #Workshop .carousel-control-prev,
    #Workshop .carousel-control-next {
        position: absolute;
        top: 50%; /* Ok tuşlarını dikey olarak ortala */
        transform: translateY(-90%); /* Ortalamak için translate kullan */
    }
    

    #Workshop p {
        margin-top: 10px;
        font-size: 10px;
        position: absolute;
        top: 150px;
        width: 90%;
        top: 30%;
        left: 50%;
        transform: translate(-50%,-50%)
        
    }

    #Address{
        height: 400px;
    }


    .map .harita{
        width: 150px !important;
        height: 130px;
        left: 10px;
        padding-right: 10px;
    }
    
    .map p{
        font-size: 10px !important;
        top: 170px;
        right: -120px !important;
        padding-left: 10px;
    }
    

        
        
        }
    

/* ===== PORTFOLIO STYLES ===== */

/* Portfolio Container */
.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Portfolio Header */
.portfolio-header {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff, #00d4ff);
    border-radius: 2px;
}

.portfolio-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.portfolio-header p {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
}

/* Portfolio Projects Section */
.portfolio-projects-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.portfolio-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff00ff, transparent);
}

.portfolio-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.portfolio-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 2px;
}

.portfolio-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-projects-grid .portfolio-project-card {
    width: 100%;
    max-width: 380px;
}

/* Son kartı merkezleme - 3n+1 durumu (1, 4, 7, 10... kart) */
.portfolio-projects-grid .portfolio-project-card:nth-child(3n+1):last-child {
    grid-column: 2;
}

/* Son kartı merkezleme - 3n+2 durumu (2, 5, 8, 11... kart) */
.portfolio-projects-grid .portfolio-project-card:nth-child(3n+2):last-child {
    grid-column: 2;
}

/* Son kartı merkezleme - 3n durumu (3, 6, 9, 12... kart) */
.portfolio-projects-grid .portfolio-project-card:nth-child(3n):last-child {
    grid-column: 2;
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
    .portfolio-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* 2 sütunlu düzende son tek kartı merkezle */
    .portfolio-projects-grid .portfolio-project-card:nth-child(2n+1):last-child {
        grid-column: 1 / 3;
        max-width: 380px;
        justify-self: center;
    }
}

/* Portfolio Animations */
@keyframes portfolioFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-project-card {
    animation: portfolioFadeInUp 0.6s ease forwards;
}

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

/* Portfolio Dark Theme */
.portfolio-dark-theme {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.portfolio-project-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.portfolio-project-card:hover::before {
    left: 100%;
}

.portfolio-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.3);
}

.portfolio-project-preview {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.portfolio-project-preview:hover img {
    transform: scale(1.05);
}

.portfolio-preview-placeholder {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.portfolio-project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
}

.portfolio-project-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.portfolio-project-link {
    display: inline-block;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.portfolio-project-link:hover::before {
    left: 100%;
}

.portfolio-project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Portfolio Footer */
.portfolio-footer {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a) !important;
    padding: 20px 0 !important;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: auto !important;
    min-height: 60px !important;
}

.portfolio-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff00ff, transparent);
}

.portfolio-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: footerShimmer 4s infinite;
}

@keyframes footerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.portfolio-footer p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.portfolio-footer i {
    color: #00d4ff;
    margin-left: 8px;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.portfolio-footer .footer-content {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
    min-height: 40px;
}



/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio-projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .portfolio-projects-grid .portfolio-project-card {
        max-width: 100%;
    }
    
    /* Tek sütunlu düzende tüm kartlar aynı genişlikte */
    .portfolio-projects-grid .portfolio-project-card:nth-child(3n+1):last-child,
    .portfolio-projects-grid .portfolio-project-card:nth-child(3n+2):last-child,
    .portfolio-projects-grid .portfolio-project-card:nth-child(3n):last-child,
    .portfolio-projects-grid .portfolio-project-card:nth-child(2n+1):last-child {
        grid-column: 1;
    }
    
    /* Footer responsive */
    .portfolio-footer {
        padding: 20px 0;
    }
}
    
