
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

 .cover-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 5px solid #fff;
            margin-top: -75px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .buttons {
            margin: 1.5rem 0;
        }

        .buttons a {
            display: inline-block;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .buttons .whatsapp {
            background-color: #25D366;
        }

        .buttons .call {
            background-color: #007BFF;
        }

        .buttons .facebook {
            background-color: #3B5998;
        }

        .buttons .messenger {
            background-color:  #0088CC;
        }

        .social-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .social-links a {
            margin: 0.5rem;
            font-size: 1.5rem;
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #4CAF50;
        }



.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
.header {
    background: #ffffff;
    color: #fff;
    text-align: center;
}

.header h1 {
    margin: 0;
    color: #000;
}

.header p {
    color: #000;
}

.header nav ul {
    padding: 0;
    list-style: none;
}

.header nav ul li {
    display: inline;
    margin: 0 15px;
}

.header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Section Styles */
.section {
    padding: 20px 0;
}

.home {
    background: #f4f4f4;
    text-align: center;
}

.portfolio .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project {
    background-color: #ff6600;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project h3 {
    margin-top: 0;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.project a:hover {
    background-color: #222;
}
.about {
    background: #fff;
    text-align: center;
}

.contact .social-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.contact .social-links li {
    display: inline-block;
    margin: 0 10px;
}

.contact .social-links a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
