  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#g-header:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 0.85;
    background-color: transparent !important;
    background-image: -webkit-linear-gradient(-310deg, #172b46, #80d0eb);
    background-image: none !important;
}

.project-card p {
    display: none;
}



body {
    font-family: Arial, sans-serif;
    background: #f2ebdf;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding:30px 0px 70px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0px;
    font-weight: 700;
}

.hero-content p {
    max-width: 400px;
    color: #555;
    line-height: 1.7;
    margin: 0px  !important;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

/* Card */
.project-card {
    display: flex;
    flex-direction: column;
}

.project-image {
    height: 240px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    margin-bottom: 16px;
    box-shadow: 5px 4px #000;
    border: 1px solid #000;
}

.project-image.light {
    background: #f6f6f6;
}

.project-image.beige {
    background: #c8b9ad;
}

.project-image.blue {
    background: #0625a6;
}

.project-image img {
    width: 100%;
    object-fit: contain;
}

.tag {
    display: inline-block;
    align-self: flex-start;
    padding: 7px 16px;
    background: #67d0eb;
    border: 2px solid #333;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 12px;
}

.project-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.project-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 18px;
    border: 1.5px solid #333;
    border-radius: 999px;
    color: #222  !important;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #222;
    color: #fff;
}

/* Bottom Button */
.more-projects {
    text-align: center;
    padding: 70px 0 100px;
}

.more-btn {
    display: inline-block;
    background: #b5c92d;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    border-bottom: 4px solid #4b5a0d;
}

.line-height-normal{
    line-height: normal;
}

/* Responsive */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}