/* ////////////////////////////////========================
Projects Section start
///////////////========================= */
.projects-section {
    background-color: #f8f9fa;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}
/* Section Title */
.section-title h1,
.section-title h2 {
    color: var(--btn-hover);
    font-size: 36px;
    font-weight: 800;
}
.section-title p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text);
    line-height: 1.9;
    font-size: 15px;
}
/* Project Card */
.project-card {
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: 0.3s ease;
}
.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
/* Image */
.project-image {
    height: 240px;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}
.project-card:hover .project-image img {
    transform: scale(1.07);
}
/* Content */
.project-content {
    padding: 25px;
    text-align: right;
}
.project-type {
    display: inline-block;
    color: #198754;
    background-color: #e9f7ef;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.project-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}
.project-content p {
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
}
/* Location */
.project-location {
    color: #555;
    font-size: 14px;
    font-weight: 600;
}
.project-location i {
    color: #198754;
    margin-left: 6px;
}
/* Button */
.projects-btn {
    background-color: #198754;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s ease;
}
.projects-btn:hover {
    background-color: #146c43;
    color: #fff;
}
