:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --dark-bg: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

nav ul li a i {
    margin-right: 5px;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Main content */
main {
    padding-top: 100px;
    min-height: calc(100vh - 160px);
}

.construction-content {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.construction-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.construction-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.construction-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.progress-bar {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px auto;
    max-width: 500px;
}


.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    animation: progress 2s ease-in-out;
}


@keyframes progress {
    from { width: 0; }
    to { width: 30%; }
}

/* Social Icons */
.social-icons {
    margin-top: 40px;
}

.social-icons h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.social-icons ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.social-icons ul li {
    margin: 0 10px 10px;
}

.social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.5rem;
}

.social-icons ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons ul li:nth-child(1) a { background-color: #3b5998; } /* Facebook */
.social-icons ul li:nth-child(2) a { background-color: #1da1f2; } /* Twitter */
.social-icons ul li:nth-child(3) a { background-color: #c32aa3; } /* Instagram */
.social-icons ul li:nth-child(4) a { background-color: #25D366; } /* WhatsApp */
.social-icons ul li:nth-child(5) a { background-color: #ff0000; } /* YouTube */
.social-icons ul li:nth-child(6) a { background-color: #0e76a8; } /* LinkedIn */
.social-icons ul li:nth-child(7) a { background-color: #ea4c89; } /* Dribbble */
.social-icons ul li:nth-child(8) a { background-color: #171515; } /* GitHub */

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 5px;
    }

    nav ul li a {
        padding: 5px 10px;
        font-size: 0.9rem;
    }

    .construction-content h2 {
        font-size: 2rem;
    }

    .construction-content p {
        font-size: 1rem;
    }

    main {
        padding-top: 180px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px;
    }

    .construction-icon {
        font-size: 4rem;
    }
}