/* TABLO BAŞLANGIÇ */

.category-column {
    border: 1px solid #1055CC;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 6px #1055CC; /* ✨ Yumuşak gölge */
    height: 370px;
  }
  

  .category-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #1055CC;
  }

  .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo-grid img {
    width: 110px;
    object-fit: contain;
    border-radius: 6px;
    padding: 5px;
  }

.category-line {
    border-bottom: 2px solid #1055CC; 
    margin-bottom: 10px;
}

/* TABLO SONU */


.section-aralık{
    border-top: 3px solid #1055CC;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section-title {
    text-align: start;
    padding-bottom: 2rem;
}

.box-container {
    position: relative;
    width: 300px;
    height: 250px;
    margin: 15px auto;
    text-decoration: none;
    display: inline-block;
}

.back-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transform: rotate(10deg);
    z-index: 0;
    transition: transform 0.3s ease;
}

.front-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
    mix-blend-mode: normal;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.front-box img {
    width: auto;
    max-height: 35px;
    margin-top: 10px;
    display: block;
}

.front-box .custom-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 20px 0;
    color: black;
}

.arrow-icon {
    font-size: 20px;
    color: black;
}

.box-container:hover .back-box {
    transform: rotate(0deg);
}

@media (max-width:768px) {

    .category-title{
        font-size: 1.3rem;
    }
    
}
