/* Existing CSS */
.inner_banner_mb {
    margin-bottom: 60px;
}

.inner_banner_projects {
    margin-bottom: 0px;
    margin-top: 86px;
}

.projects_banner {
    background-image: url(../images/aboutpage/about_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.inner_banner_title ul li,
.inner_banner_title ul li a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.inner_banner_title ul li {
    display: inline-block;
}

.projects_banner .inner_banner_title {
    display: inline-block;
    padding: 160px 0px;
    position: relative;
    text-align: left;
}

.inner_banner_title h1 {
    color: white;
    font-size: 60px;
    margin-top: 5px;
    font-weight: 700;
}

.projects_section {
    padding: 20px 0 60px 0;
    background-color: #f8f8f8;
}

.project_item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project_item:hover {
    transform: translateY(-10px);
}

.project_item img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures image fits nicely */
}

.project_content {
    padding: 30px 20px 0px 20px;
    min-height: 240px;
    max-height: 240px;
}

.project_content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.project_content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* CSS for Title Section */
.projects_title_section {
    text-align: center;
    padding: 40px 0;
}

.projects_main_title {
    font-size: 36px;
    color: #ff0000; /* Red color as per the image */
    font-weight: 700;
    margin-bottom: 10px;
}

.projects_subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 400;
}

/* Responsive Design for Title Section */
@media (max-width: 768px) {
    .projects_main_title {
        font-size: 28px;
    }

    .projects_subtitle {
        font-size: 16px;
    }
}
