body {
    margin: 0;
    font-family: 'Arial Narrow', sans-serif,sans-serif;
    font-style: italic;
    background-color: black;
    color: white;
    text-align: center;
    padding: 0;

}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background-color: royalblue;
}

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

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: rebeccapurple;
}

.social-icons img {
    width: 20px;
    margin-left: 15px;
    filter: invert;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    font-weight: bold;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}


.hero-image {
    margin-top: 20px;
}

.hero-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 80px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    text-align: left;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.clients {
    text-align: center;
    margin-top: 50px;
}

.clients h3 {
    font-size: 1.5rem;
    color: #aaa;
}

.client-logos {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.client-logos img {
    width: 100px; 
    height: 50px; 
    margin: 10px;
}

.about-content {
    flex: 1;
    text-align: center;
    padding-right: 30px;
   
}

   
.about-section {
    padding: 100px 20px;
}

.about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.about-image {
    margin-top: 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: auto;
    flex-direction: column;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    box-shadow: 2px 2px 10px green;
}

.cta-button:hover {
    background-color: greenyellow;
}


  @keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-text {
    display: inline-flex;
    font-size: 15px;
    color: white;
    animation: slide 5s ease-in-out;
}

.services-section {
    text-align: center;
    padding: 60px 20px;
    background-color: black;
    color: white;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card {
    background: black;
    padding: 50px; ;
    border-radius: 10px;
    box-shadow: 0px 4px 10px;
    max-width: 400px;
    text-align: center;
}

.service-card img {
    width: 300px; ;
    margin-bottom: 80px;
    
}

.service-card h3 {
    font-size: 10px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: white;
}

.contact-section {
    text-align: center;
    padding: 50px;
    background-color: black;
    color: white;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-info a {
    text-decoration: none;
    color:royalblue;
    font-weight: bold;
    
}

.contact-info a:hover {
    background: whitesmoke;
}



    form button {
        background: #007bff;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
    }

    form input, form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    form {
        max-width: 500px;
        margin: auto;
    }

form button:hover {
    background: #0056b3;

}
    