body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff; 
}

.logo_name {
    color: #fff;
}

.top-bar {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #264653; /* Dark teal */
    color: #fff;
}

.logo {
    width: 70px;
    height: auto;
    margin-right: 15px;
}

h1 {
    margin: 0;
    color: #303030;
    font-size: 35px;
}

section {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

#about, #services {
    background-color: #fff;
    padding: 60px;
    padding-bottom: 0px;
    border-radius: 8px;
    font-weight: lighter;
    font-size: 19px;
}

footer {
    background: #264653; /* Dark teal */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px; /* Add margin to separate it from the content */
}

.project {
    margin-bottom: 40px;
}

.project h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #303030; /* Dark gray */
}

.project p {
    margin-bottom: 15px;
    color: #303030; /* Dark gray */
}

/* Slider styling */
.slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider img {
    max-height: 500px;
    object-fit: contain;
    display: none; /* Hide all images initially */
}

.slider img:first-child {
    display: block; /* Show the first image initially */
}

/* Slider navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#contact {
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 40px;
    border-radius: 8px;
}

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

.contact-details a {
    color: #264653;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
img {
    border-radius: 12px;

}
@media screen and (max-width: 720px){
    .slider img{
        width: 100%;
    }
}