
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    scroll-behavior: smooth;
    border-top: 5px solid #2c79ee;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

.hero {
    background: url('back.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    animation: fadeIn 1s ease-in;
    position: relative;
    overflow: hidden;
    border-bottom: 3.5px solid #2c79ee;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero h2, .hero p {
    position: relative;
    z-index: 2;
}
.hero h2 {
    font-size: 2.5em;
    margin: 0;
}
.hero p {
    font-size: 1.2em;
    margin-top: 10px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
section {
    margin-top: 40px;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.service {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.service img {
    width: 50px;
    height: 50px;
}
footer {
    text-align: center;
    padding: 10px;
    border-top: 5px solid #2c79ee;
    color: #333;
    position: relative;
    bottom: 0;
    margin-top: 20px; 
    background-color: #f7f7f7;
}
footer p {
    margin: 0;
    font-size: 0.9em;
}
button {
    background-color: #2c79ee;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 1em;
}
button:hover {
    background-color: #0966f1;
    transform: translateY(-2px);
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 7px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}
input:focus, textarea:focus {
    border-color: #0966f1;
    outline: none;
}
form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}
form label {
    font-weight: bold;
    margin-top: 10px;
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.header-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.header-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c79ee;
}

.header-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.header-nav a:hover {
    color: #2c79ee;
}

#clients {
    background-color: #f7f7f7;
    padding: 40px 20px;
    text-align: center;
    border-top: 3.5px solid #2c79ee;
    border-radius: 1em 10px 1em 0.1in;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 100px;
}

.client-logo {
    width: 100px;
    height: auto;
    margin: 0 15px;
    opacity: 0;
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.client-logo:nth-child(1) { animation-delay: 0s; }
.client-logo:nth-child(2) { animation-delay: 0.2s; }
.client-logo:nth-child(3) { animation-delay: 0.4s; }
.client-logo:nth-child(4) { animation-delay: 0.6s; }


@media (max-width: 600px) {
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
}