/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Navbar */
header {
    background: #333;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    height: 50px;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #00adb5;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    padding: 3rem 0;
    background: linear-gradient(to bottom, #1a1a1a, #333);
}

.hero img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #00adb5;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
}

.hero-text p {
    font-size: 1.5rem;
    animation: fadeIn 2s ease-in-out 1s;
}

/* Fade-In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* About and Services Sections */
section {
    padding: 2rem 5%;
    text-align: center;
}

h2 {
    color: #00adb5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-links .button {
    background: #00adb5;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.service-links .button:hover {
    background: #02848e;
}

/* Service Cards */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: #333;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #00adb5;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .footer-links li a {
    color: #00adb5;
    text-decoration: none;
}

footer .footer-links li a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

header {
    background: #333;
    padding: 1rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #00adb5;
}

/* Main Section */
main {
    padding: 2rem;
    text-align: center;
    background-color: #1a1a1a;
}

/* Contact Section */
.contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    color: #00adb5;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-link {
    text-decoration: none;
    color: #00adb5;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 1px solid #00adb5;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.social-link:hover {
    background: #00adb5;
    color: #fff;
}

/* Contact Information */
.contact-info {
    margin-top: 2rem;
    color: #e0e0e0;
}

.contact-info h3 {
    color: #00adb5;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: #333;
    color: #e0e0e0;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

footer .footer-links li a {
    color: #00adb5;
    text-decoration: none;
}

footer .footer-links li a:hover {
    text-decoration: underline;
}
