/*web-design.css */

/* General Styles */
.body {
    font-family: "Poppins", sans-serif !important;
}

/* Project Details Styles */
.project-details h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
}

.project-details h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 41px;
    color: #171717;
    margin-bottom: 0;
    margin-top: 60px;
}

.project-details h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 41px;
    color: #fb9235;
}

.project-details h4 {
    font-size: 20px;
    line-height: 24px;
    color: #fb9235;
    margin-top: 20px;
    margin-bottom: -5px;
}

.project-details p {
    color: #434a5c;
    padding-bottom: 0 !important;
    line-height: 25px;
    margin: 10px 0 !important;
}

.project-details .gray-text {
    color: #434a5c;
}

.project-details .container {
    margin-top: -20px;
}

.project-details .mb17 {
    margin-bottom: 17px;
}

.project-details span {
    display: block;
    line-height: 25px;
}

/* Custom List Styles */
.custom-list ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px !important;
}

.custom-list ul li {
    position: relative;
    padding-left: 20px;
    text-indent: 0;
    color: #434a5c;
    margin-bottom: 8px;
}

.custom-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: black;
    font-weight: bold;
}

.auto {
    color: #434a5c;
    font-weight: 600;
}

/* Impact Grid Styles */
.impact-grid {
    margin: 40px 0;
}

.impact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.impact-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-card.full-width {
    flex: 0 0 100%;
    background: #fb9235;
    color: white;
}

.impact-value {
    font-size: 42px;
    font-weight: 700;
    color: #fb9235;
    line-height: 1;
    margin-bottom: 10px;
}

.impact-card.full-width .impact-value {
    color: white;
}

.impact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #171717;
}

.impact-card.full-width .impact-title {
    color: white;
}

.impact-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #434a5c;
}

.impact-card.full-width .impact-desc {
    color: rgba(255,255,255,0.9);
}

/* UI Card Styles */
.ui-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.ui-card:hover {
    transform: translateY(-5px);
}

.ui-card img {
    border-radius: 8px;
    max-height: 220px;
    object-fit: cover;
}

.ui-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.ui-card p {
    font-size: 14px;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .impact-row {
        flex-direction: column;
    }
    
    .project-details h1 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .project-details h2 {
        font-size: 32px;
        line-height: 36px;
        margin-top: 40px;
    }
    
    .project-details h3 {
        font-size: 28px;
        line-height: 32px;
    }
}

/* Button Styles */
.theme-btn-custom {
    text-align: center;
    width: 90%;
    display: block;
    margin: 10px auto;
}

/* Social Links Styles */
.social-links-custom {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* UI Showcase Section */
.ui-showcase-section {
    padding: 40px 0;
}

.ui-showcase-img {
    border-radius: 8px;
    max-height: 700px !important;
    object-fit: cover;
    object-position: top;
    width: 100%;
}