
/* Hero Bölümü*/
.montaj-hero {
    position: relative;
    padding: 120px 0 80px; /* Navbar fixed olduğu için üstten pay verdik */
    background: linear-gradient(135deg, rgba(5, 22, 34, 0.95) 40%, rgba(112, 112, 112, 0.7)), 
                url('../assets/images/hero/montaj.jpg'); /* Arkaya teknik bir iş görseli koyabilirsin */
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom: 3px solid #00d2ff; /* Sayfaya bir vurgu rengi çizgisi */
}

.montaj-hero-content .subtitle {
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}

.montaj-hero h1 {
    font-size: 2.8rem;
    margin: 10px 0;
    font-weight: 800;
}

.montaj-hero-content p {
    max-width: 600px;
    opacity: 0.8;
    font-size: 1.1rem;
}




/* --- Proje & Montaj Bölümü --- */
.applications {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3'lü dizilim */
    gap: 30px;
}

.app-card {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border:1px solid rgba(255, 255, 255, 0.1) ;
    transition: 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2);
}
.app-card:hover {
    color: #4da3ff;
}

.app-img {
    position: relative;
    height: 250px;
}

.app-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 61, 98, 0.7); /* Senin koyu mavi */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-size: 30px;
}

.app-card:hover .app-overlay {
    opacity: 1;
}

.app-info {
    padding: 25px;
}

.app-info h4 {
    color: #0A3D62;
    margin-bottom: 12px;
    font-size: 18px;
    
}

.app-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Satır sayısı */
    line-clamp: 3;         /* Standart olan (sarı çizgiyi bu azaltır) */
    text-overflow: ellipsis;
    height: 4.5em;         /* 3 satır için ideal yükseklik */
    margin-bottom: 15px;
}


.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5; /* Overlay'in altında veya üstünde olmasını ayarlar */
    content: "";
}

/* Mobil için */
@media (max-width: 991px) {
    .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .apps-grid { grid-template-columns: 1fr; }
}