.elementor-29369 .elementor-element.elementor-element-8eead4d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-13993f2 *//* Reset default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full page black background */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* black */
    color: #fff; /* white text outside cards */
    text-align: center; /* center text globally */
    padding: 20px;
}

/* Main section full black */
.main-section {
    background-color: #000;
    padding: 40px 0;
}

/* Header title + description */
.header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
}

.header .description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

/* Projects container */
.projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Project cards */
.project-card {
    background-color: #fff;  /* white cards */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    color: #000; /* black text inside cards */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.project-logo {
    max-width: 150px;
    margin-bottom: 12px;
}

.project-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* Side by side on wider screens */
@media (min-width: 600px) {
    .projects {
        flex-direction: row;
        justify-content: center;
    }
}/* End custom CSS */