﻿
/* Modern Title */
.modern-title {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}

.modern-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#00000085, #0000005a);
}

.modern-title .title-outer {
    position: relative;
    z-index: 2;
}

.modern-title .subtitle {
    color: #fff;
    font-size: 18px;
    opacity: 0.9;
}

/* Modern Project Section */
.modern-project-section .title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Card Design */
.project-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0px 15px 40px rgba(0,0,0,0.12);
    }

/* Image */
.project-img img {
    width: 100%;
    transition: 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Content */
.project-content {
    padding: 25px;
}

    .project-content .tag {
        display: inline-block;
        padding: 6px 15px;
        background: #070742;
        color: #fff;
        font-size: 13px;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .project-content h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .project-content p {
        font-size: 15px;
        color: #6b6b6b;
        margin-bottom: 18px;
    }

/* Button */
.project-btn {
    text-decoration: none;
    font-weight: 600;
    color: #070742;
    transition: 0.2s ease;
}

    .project-btn:hover {
        padding-left: 5px;
    }


