/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
header {
    background: #111827;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
    ),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600")
    center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* CTA Button */
.btn,
.hero-content a {
    display: inline-block;
    background: #38bdf8;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover,
.hero-content a:hover {
    background: #0ea5e9;
}

/* Sections */
section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* Services */
.services {
    max-width: 1200px;
    margin: auto
}
	
	.project-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.project-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.project-button:active {
    transform: translateY(0);
}