﻿

@media (min-width: 1399px) {
    .project__details-thumb .project-info {
        position: unset;
        border-radius: 10px;
        overflow: hidden;
        margin-top: 30px;
        width: 100%;
    }
}

a, button, i {
    font-style: normal;
}

 

.icon, .fa-solid {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
}
.fa-solid {
    padding: 6px;
}
#about-devdexter {
    padding: 60px 20px;
    background: #ffffff;
    color: #1a1a1a;
}

.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 32px;
    align-items: center;
    position: relative;
}

.hero-side {
    position: relative;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 1.6s cubic-bezier(.2, .9, .3, 1);
}

.hero-side:hover .hero-img {
    transform: scale(1.05);
}

.floating-ico {
    position: absolute;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
    font-size: 22px;
    animation: float 6s ease-in-out infinite;
}

.ico-1 {
    right: 22px;
    top: 18%;
}

.ico-2 {
    right: 38px;
    bottom: 18%;
    animation-delay: 1s;
}

.ico-3 {
    left: 18px;
    bottom: 28%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.info-side {
    padding: 36px 28px;
    border-radius: 18px;
    background: #fafafa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(90deg, #00bfa6, #007aff);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 14px;
}

.title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #111;
}

    .title span {
        background: linear-gradient(90deg, #007aff, #8b5cf6);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
    }

.lede {
    color: #333;
    font-size: 15px;
    margin-bottom: 20px;
}


.features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 14px 0 22px;
}

.feat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #ffffff;
    padding: 14px;
    border-radius: 12px;
    flex: 1 1 30%;
    min-width: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

    .feat:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .feat .icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f0f4ff, #e5f7ff);
        color: #007aff;
        font-size: 20px;
    }

    .feat h4 {
        margin: 0;
        font-size: 15px;
        color: #111;
    }

    .feat p {
        margin: 4px 0 0;
        font-size: 13px;
        color: #555;
    }


.cta-row {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #007aff, #00bfa6);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
    }

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.stats {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat {
    text-align: center;
    min-width: 72px;
}

.num {
    font-size: 20px;
    font-weight: 800;
    color: #007aff;
}

.label {
    font-size: 12px;
    color: #777;
}

.foot-note {
    margin-top: 18px;
    color: #555;
    font-size: 13px;
}


@media (max-width: 980px) {
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-side {
        height: 360px;
        order: 1;
    }

    .info-side {
        order: 2;
    }
}
