p{
    font-size: 18px;
}
.home{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact{
    display: flex;
    justify-content: center;
    align-items: center;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.about .content{
    margin-right: 50px;
    max-width: 50%;
}
.about .content i{
    font-size: 15rem;
    margin-top: 20px;
    color: #fff;
    transition: 0.3s;
}
.about .content i:hover{
    transform: scale(1.1);
    color: rgb(184, 24, 24);
    cursor: pointer;
}

.dot-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  transform: scale(1.3);
}
.boxs2{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.box2{
    flex: 0 1 calc(33.333% - 40px); /* 3 kutu yan yana, gap ile birlikte */
    max-width: 350px;
    min-width: 250px;
    height: 350px;
    background-color: rgb(30, 30, 30);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.box2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s;
}
.box2:hover img{
    filter: brightness(40%);
    transform: scale(1.05);
}
.box2 .title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; /* prevent blocking image interaction */
    z-index: 2;
}
.box2:hover .title{
    opacity: 1;
}
.box2 .title h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}
.box2 .title p{
    font-size: 14px;
    text-align: center;
    color: #fff;
}

/*/////////////////////////////////////////////*/

.boxs{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.box{
    width: 350px;
    height: 350px;
    background-color: rgb(30, 30, 30);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s;
    margin-top: 30px;
    position: relative; /* enable absolute positioning for children */
    overflow: hidden; /* clip content to rounded corners */
}
.box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .4s;
}
.box:hover img{
    filter: brightness(40%);
    transform: scale(1.05);
}
.box .title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; /* prevent blocking image interaction */
    z-index: 2;
}
.box:hover .title{
    opacity: 1;
}
.box .title h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}
.box .title p{
    font-size: 14px;
    text-align: center;
    color: #fff;
}
.start{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.carousel-container, .carousel-inner {
  width: 100% !important;
}

/* Slider carousel genişlik animasyonunu tamamen engellemek için: */
.carousel-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}
.carousel {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.carousel-inner {
  width: 100%;
  display: block;
}
.carousel-item {
  width: 100%;
  display: block;
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  bottom: auto;
}

