body{
    /*background-color: rgb(25, 24, 24);*/
    background-color: rgb(20, 20, 20);
    color: white;
}
/* navbar */
.active{
    border-bottom: 1px solid #fff;
}
@media (max-width:992px) {
  .active{
    border-bottom: none;
  }
}
.menu-icon{
  border: 1px solid #f9f7f7;
  /*background-color: rgb(25, 24, 24);*/
  background-color: rgb(20, 20, 20);
  border-radius: 7px;
}
.menu-icon:hover .a{
  margin-left: 15px;
  transition: all 0.3s;
}
.menu-icon:hover .c{
  margin-left: 0;
  transition: all 0.3s;
}
.a{
  width: 15px;
  height: 2px;
  background-color: #f9f7f7;
  border-radius: 4px;
  margin-top: 5px;
}
.b{
  width: 30px;
  height: 2px;
  background-color: #f9f7f7;
  border-radius: 4px;
}
.c{
  width: 15px;
  height: 2px;
  background-color: #f9f7f7;
  margin-left: 15px;
  border-radius: 4px;
}
.menu-icon div{
  margin-bottom: 7px;
}

.menu-icon a{
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 5px;
}
.resim{
    box-shadow: rgba(201, 199, 200, 0.4) 5px 5px, rgba(156, 155, 156, 0.3) 10px 10px, rgba(78, 78, 78, 0.2) 15px 15px, rgba(62, 62, 62, 0.1) 20px 20px, rgba(34, 34, 34, 0.05) 25px 25px;
}
.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;     /* Daire şeklinde div */
    background-color: rgba(255, 255, 255, 0.5);     /* Dairenin içine opacity ver */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;     /* Dairenin resimden uzaklığı */
    cursor: pointer;
}

.text{
    font-size: 25px;
    font-family: Helvetica;
    font-weight: 700;
    /*color : #c4302b;*/
    color: rgba(255, 255, 255, );
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
}


.circle-resim{
    width: 150px;
    height: 150px;
    border-radius: 75px;
}
/* card */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto; /* İçeriği ortala ve kenarlardan boşluk bırak */
    max-width: 1200px; /* Maksimum genişlik belirle */
    background-color: rgb(20, 20, 20);
    border:none;
}

.card {
    flex: 1 1 300px; /* Her karta eşit genişlik ve minimum genişlik ver */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: rgb(20, 20, 20);
    border:none;
}


.card .custom-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 320px;                   /* Kart genişliği */
    max-width: 100%;
    height: 250px;
    border-radius: 20px;
    transition: 0.5s;
    box-shadow: 0 35px 80px rgba(0, 0, 0,0.15);
    background: #fff;

}



.card .custom-card:hover{
    height: 320px;
    opacity: 0.9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

}

.card .custom-card .img-box{
    position: absolute;
    top: 20px;
    width: 90%;
    height: 170px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
    
}

.card .custom-card:hover .img-box{
    top: -80px;
    scale: 0.75px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    width: 170px;
}

.card .custom-card .img-box img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.card .custom-card .custom-content{
    position: relative;
    top: 200px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 1s;
}

.card .custom-card:hover .custom-content{
    top: 130px;
    height: 250px;
}

.card .custom-card .custom-content h3{
    font-size: 16px;
    font-weight: 600;
    color: #333333;

}
@media (max-width: 480px){
    .card .custom-card .custom-content h3{
        font-size: 18px;
        font-weight: 700;
    }
}
.card .custom-card .custom-content p{
    color: #333;
}

.card .custom-card .custom-content a{
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    background: #181818;
    color: #fff;
    font-weight: 600;
}

.card .custom-card .custom-content a:hover{
    opacity: 0.8;
}


@media (min-width: 986px) and (max-width: 1250px){
    .card .custom-card{
        width: 230px;
        border-radius: 15px;

    }

    .card .custom-card .img-box{
        width: 100%;
        border-radius: 10px;
    }

    .card .custom-card .img-box img{
        width: 160;
        height: 100%;
    }

}


/* gallery */

.description{
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    opacity: 0;
    transition: 0.3s;
}

.description h3{
    font-size: 30px;
    margin: 0;
}

.description p{
    font-size: 20px;
    margin: 0;
}

.gallery{
    height: 300px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gallery-item{
    position: relative;
    width: 40px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: 0.3s;
    filter: grayscale(100%);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover{
    width: 300px;
    filter: grayscale(0);
}

.gallery-item:hover .description{
    transition-delay:0.1s;
    opacity: 1;
}

.gallery-item:not(:hover){
    width: 40px;
}

body {
    margin: 0;
    padding: 0;
}

