/* =======================================
           HAKKIMIZDA TASARIMI (Sol Resim / Sağ Metin)
           ======================================= */

        .dproje-about-alt {
            position: relative;
            padding: 120px 0;
            background-color: #0d0d0d;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        .dproje-about-alt .container {
            position: relative;
            z-index: 5;
        }

        .dproje-about-alt .grid_lines {
            z-index: 1;
            opacity: 0.6;
            pointer-events: none;
        }

        .about-image-box {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            height: 600px;
            width: 100%;
        }

        .about-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85);
            transition: transform 1s ease, filter 1s ease;
        }

        .about-image-box:hover img {
            transform: scale(1.05);
            filter: brightness(1);
        }

        .about-exp-badge {
            position: absolute;
            right: 0;
            bottom: 0;
            background: #f4b93e;
            padding: 30px 35px;
            border-top-left-radius: 6px;
            text-align: center;
            z-index: 2;
        }

        .about-exp-badge h3 {
            font-size: 3rem;
            color: #fff;
            margin: 0;
            line-height: 1;
            font-weight: 700;
        }

        .about-exp-badge span {
            color: #fff;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            display: block;
            margin-top: 5px;
        }

        .about-text-box {
            padding-left: 40px;
        }

        .about-text-box .sub-title {
            color: #f4b93e;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(166, 161, 130, 0.4);
            padding-bottom: 5px;
        }

        .about-text-box .main-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .about-text-box .main-title span {
            color: transparent;
            -webkit-text-stroke: 1px #f4b93e;
        }

        .about-text-box .desc {
            color: #b0b0b0;
            font-size: 1.05rem;
            line-height: 1.9;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .about-text-box .desc.highlight {
            color: #fff;
            border-left: 3px solid #a6a182;
            padding-left: 20px;
            font-weight: 400;
        }

        .vm-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 40px 35px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            height: 100%;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: #a6a182;
            transform: scaleY(0);
            transition: transform 0.4s ease;
            transform-origin: bottom;
        }

        .vm-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: rgba(166, 161, 130, 0.3);
        }

        .vm-card:hover::before {
            transform: scaleY(1);
        }

        .vm-card .icon {
            width: 50px;
            height: 50px;
            background: rgba(166, 161, 130, 0.1);
            color: #f4b93e;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 1.3rem;
            margin-bottom: 25px;
            transition: 0.4s;
        }

        .vm-card:hover .icon {
            background: #f4b93e;
            color: #fff;
        }

        .vm-card h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .vm-card p {
            color: #999;
            font-size: 0.95rem;
            line-height: 1.8;
            margin: 0;
        }