﻿.customTitle {
    color: #ffffff;
    margin-top: 150px;
}

.customItem {
    color: #ffffff;
}

/* Dropdown menüsünün çerçevesini düzleştirmek için özel stil */
.dropdown-menu {
    border-radius: 5px; /* Köşeleri hafifçe kıvrar */
    border: 1px solid #ccc; /* Bir kenarlık ekler */
    box-shadow: none; /* Gölgeleri kaldırır */
    /*max-width: 240px;*/
    padding: 6px
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.455em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

ul li ul li:hover {
    background: #f2f2f2;
}

/* Dil değiştirme düğmesi stilini güncelle */
#languageButton {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: -8px;
    /*margin-right:-10px*/
}

/* Bayrak simgesi stilini ayarla */
.language-icon {
    width: 25px;
    height: auto;
    margin-right: 5px; /* Yazıdan sağa boşluk bırakmak için */
}

/* Dil adı stilini ayarla */
.language-name {
    display: inline-block;
    vertical-align: middle;
    color: white; /* Yazı rengini beyaz yap */
}




/*cozum bolumu*/
#solutions  {
    max-width: 1400px !important;
    margin: 0 auto;
}
#solutions .header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

    #solutions .header h1 {
        font-size: 3em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    #solutions .header p {
        font-size: 1.2em;
        opacity: 0.95;
        color:black;
    }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: .7rem !important;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

  /*  .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }*/

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    }
.product-icon {
    width: 70px;
    height: 70px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    /*background-color: rgb(10, 38, 64);*/
}

.product-card h2 {
    color: #2d3748;
    font-size: 1.8em;
    margin-bottom: 15px;
    min-height: 2.4em;
}

.product-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05em;
    min-height: 5em;
}
 .features {
    margin-bottom: 25px;
}

     .features ul {
        list-style: none;
    }

    .features li {
        color: #4a5568;
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        font-size: 0.85em;
    }

          .features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.2em;
        }

.demo-button {
    display: inline-block;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
    background-color: #0A2640;
}

    .demo-button:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgb(193 203 248 / 60%);
    }

 .cta-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

      .cta-section h2 {
        color: #2d3748;
        font-size: 2.2em;
        margin-bottom: 20px;
    }

     .cta-section p {
        color: #4a5568;
        font-size: 1.2em;
        margin-bottom: 30px;
    }

@media (max-width: 768px) {
    #solutions .header h1 {
        font-size: 2em;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

     .product-card {
        padding: 30px 20px;
    }

     .cta-section {
        padding: 30px 20px;
    }
}