/* Global Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: url('website background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: black; /* all text black */
    font-weight: bold;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header / Navigation */
header {
    background: rgba(255,255,255,0.9); /* light background for readability */
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: rgba(255,255,255,0.7); /* semi-transparent box */
    margin: 20px auto;
    border-radius: 10px;
}

.hero-buttons a {
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background-color: #0078ff;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #005bb5;
}

.btn-outline {
    background-color: white;
    color: black;
    border: 2px solid #0078ff;
}

.btn-outline:hover {
    background-color: #0078ff;
    color: white;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 0;
    background: rgba(255,255,255,0.7);
    margin: 20px auto;
    border-radius: 10px;
    text-align: center;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* About Section */
.about-content {
    background: rgba(255,255,255,0.7);
    padding: 50px 20px;
    margin: 20px auto;
    border-radius: 10px;
    text-align: center;
}

/* Contact Section */
.contact .container {
    background: rgba(255,255,255,0.7);
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
}

/* Footer */
footer {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    text-align: center;
    font-weight: bold;
}
