/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    background: url("../images/bg.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
	background: url("../images/bg.png") center/cover no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
 //   background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005fa3;
}

/* Sections */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section.alt {
    background: #fff;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: #0078d4;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    margin-top: 40px;
}
