
.our-work-section {
    padding: 60px 20px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.our-work-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.our-work-image {
    flex: 1;
    min-width: 300px;
}

.our-work-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.our-work-content {
    flex: 1;
    min-width: 300px;
}

.our-work-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.our-work-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.highlight-box {
    background: #fff;
    padding: 15px;
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
    font-weight: bold;
}

.our-work-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.our-work-btn:hover {
    background: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .our-work-container {
        flex-direction: column;
    }
}



.project-section {
    padding: 60px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.project-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

/* Image Grid */
.project-gallery {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.project-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.project-gallery img:hover {
    transform: scale(1.05);
}

/* Make one image bigger */
.project-gallery img:nth-child(1) {
    grid-column: span 2;
    height: 220px;
}

/* Content */
.project-content {
    flex: 1;
    min-width: 300px;
}

.project-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #222;
}

.project-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.project-highlight {
    background: #f1f8f4;
    padding: 15px;
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
    font-weight: bold;
}

.project-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.project-btn:hover {
    background: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .project-container {
        flex-direction: column;
    }
}
