/* CSS reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f4f4f4;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar .logo img {
    width: 120px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #2575fc;
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: #ff4500;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down a {
    color: white;
    font-size: 2em;
    transition: transform 0.3s ease;
}

.scroll-down a:hover {
    transform: translateY(5px);
}

/* Sections */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: auto;
}

section .content {
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2575fc;
}

.about .images-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
    flex-wrap: wrap;
}

.about .images-container img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.service-item {
    flex: 1 1 calc(33.333% - 1rem);
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.project .content {
    background: linear-gradient(135deg, #f8ffae, #43c6ac);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#countdown {
    font-size: 2em;
    margin: 20px 0;
    text-align: center;
    color: #333;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact label {
    font-weight: 500;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background-color: #ff6347;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #ff4500;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #ff6347;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    color: green;
    display: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        display: none;
    }

    .navbar .nav-links.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .timeline-item {
        margin: 10px 0;
    }

    .service-item {
        flex: 1 1 100%;
    }

    .about .images-container img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 2em;
    }

    .services-list {
        flex-direction: column;
    }

    .service-item {
        margin-bottom: 1rem;
    }

    .timeline {
        flex-direction: column;
    }

    .timeline-item {
        margin-bottom: 1rem;
    }
}
