/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
 
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
}
 
.navbar .logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
 
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
 
.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}
 
.navbar .nav-links li a:hover {
    color: #ff6b6b;
}
 
/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    background: url('../images/unsplash1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
 
.hero-content {
    /* background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px; */
    background: rgba(17, 24, 39, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn{
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
 
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
 
.btn {
    background-color: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
 
.btn:hover {
    background-color: #ff4b4b;
}
 
/* Section Styles */
.section {
    padding: 4rem 2rem;
    text-align: center;
}
 
.about, .services, .contact {
    background-color: white;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
 
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
 
.contact input, .contact textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
 
.contact button {
    background-color: #333;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
 
.contact button:hover {
    background-color: #ff6b6b;
}
 
/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
}
 
/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        background-position: center;
        background-size: cover;
    }
 
    .hero h1 {
        font-size: 2rem;
    }
 
    .hero p {
        font-size: 1.2rem;
    }
 
    .btn {
        padding: 8px 16px;
    }
 
    .section {
        padding: 2rem 1rem;
    }
}
