.dropdown-lang {
    position: fixed;

    bottom: -130px;
    right: 20px;

    background: #0f0f0f;
    border-radius: 12px;
    min-width: 140px;
    padding: 6px 0;

    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    z-index: 999;
}

.dropdown-lang.show {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-lang a {
    display: block;
    padding: 10px 16px;
    color: #fff;
}

.dropdown-lang a:hover {
    background: #1f1f1f;
}

.services {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 0 15px rgba(0, 183, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

/* .service-card {
    background: linear-gradient(145deg, #0e1f2b, #07131b);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    box-shadow:
        0 0 25px rgba(0, 183, 255, 0.15),
        inset 0 0 30px rgba(255, 140, 0, 0.05);
    transition: all 0.4s ease;
} */

.service-card {
    background: linear-gradient(145deg, #0e1f2b, #07131b);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    box-shadow:
        0 0 25px rgba(0, 183, 255, 0.15),
        inset 0 0 30px rgba(255, 140, 0, 0.05);
    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
}


.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 0 35px rgba(255, 140, 0, 0.4),
        0 0 25px rgba(0, 183, 255, 0.4);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: #00b7ff;
    text-shadow: 0 0 20px rgba(0, 183, 255, 0.8);
}

.service-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: #b6c9d6;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8c00, #00b7ff);
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.5);
    transition: all 0.3s ease;
    margin-top: auto; 
}

.service-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
}

.service-btn:hover span {
    transform: translateX(6px);
}

.service-info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding-left: 28px;
    padding-right: 28px;
}

.project-card {
    background: linear-gradient(145deg, #0e1f2b, #07131b);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(0, 183, 255, 0.2);
    box-shadow:
        0 0 25px rgba(0, 183, 255, 0.15),
        inset 0 0 25px rgba(255, 140, 0, 0.05);
    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
}


.project-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 35px rgba(255, 140, 0, 0.4),
        0 0 25px rgba(0, 183, 255, 0.4);
}

.project-icon {
    font-size: 40px;
    margin-bottom: 14px;
    color: #00b7ff;
    text-shadow: 0 0 18px rgba(0, 183, 255, 0.8);
}

.project-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.project-card p {
    color: #b6c9d6;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tag {
    display: inline-block;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 183, 255, 0.15);
    color: #00b7ff;
}
