.elementor-899 .elementor-element.elementor-element-8c3b0b5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-899 .elementor-element.elementor-element-fb66837{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8540496 *//* ===== PROJECT GALLERY SECTION ===== */
.dev-gallery {
    background: #F4F6F8;
    padding: 100px 0;
}

.gallery-container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}

.center { text-align: center; }

.gold-line {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 18px;
}

.gallery-header h2 {
    font-size: 30px;
    color: #0B1C2D;
    margin-bottom: 10px;
}

.gallery-header p {
    color: #5B6B7C;
    margin-bottom: 45px;
    font-size: 16px;
}

/* Image Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Subtle gold frame */
.gallery-item::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: -14px;
    bottom: -14px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    z-index: -1;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-header h2 {
        font-size: 24px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cc8b45 *//* ===== DEVELOPER SECTION – PREMIUM PROFILE ===== */
.developer-section {
    background: linear-gradient(135deg, #0B1C2D 0%, #081521 100%);
    color: #F5F7FA;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow */
.developer-section::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -30%;
    left: -30%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.dev-container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.center { text-align: center; }

.gold-line {
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 0 auto 18px;
}

.dev-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.dev-header p {
    color: #AAB4C3;
    margin-bottom: 45px;
    font-size: 17px;
}

.dev-body p {
    color: #AAB4C3;
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 16px;
}

/* Highlight Boxes */
.dev-highlights {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.highlight-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.18);
    padding: 20px 18px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 0 18px rgba(212,175,55,0.08);
}

.highlight-title {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 6px;
}

.highlight-text {
    font-size: 15px;
    color: #F5F7FA;
}

/* MOBILE */
@media (max-width: 768px) {
    .dev-header h2 {
        font-size: 24px;
    }

    .dev-body p {
        font-size: 15px;
    }

    .dev-highlights {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */