
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}



a {
    color: #ffffff;
    text-decoration: none;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header, .navbar {
    margin: 0;
    padding: 0;
}

h1, nav {
    margin: 0;
}



/* Sections */
section {
    padding: 4rem 0;
}
.industries, .services, .success-stories {
    background: #ffffff;
    text-align: center;
    padding: 4rem 0;
}

.industry-grid, .services-grid, .stories-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-card, .service-card, .story-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover, .service-card:hover, .story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: #0000FF;
}


