body {
    background-color: #ffff;
    margin: 0;
}

.navbar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:45px;
    padding:20px 40px;
    position:relative;
    z-index:1000;
    background:white;
}

.menu-btn{
    position:absolute;
    right:25px;
    z-index:1001;
}
.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    cursor:pointer;
}


.navbar a {
    text-decoration: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}


.navbar a img {
    width: 100%;
}

.nav-links a:not(.facebook):hover {
    color: black;
    transform: scale(1.15);
}
.facebook {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black;
    border: 2px solid white;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    transition: all 0.3s ease;
}


.facebook i {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}


.facebook:hover {
    background: white;
}

.facebook:hover i {
    color: black;
}

.slideshow {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: transparent;   
    border: none;

    color: white;              
    font-size: 40px;           
    font-weight: 100;          

    cursor: pointer;
    padding: 0 10px;

    opacity: 0.7;
    transition: 0.2s ease;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}
.welcome {
    text-align: center;
    padding: 30px 10px;
    color: #00ABEF;
    font-size: 50px;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
}
.service-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card{
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
    
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.35);
    transition: transform 0.5s ease;
    
}
.service-card:hover img {
    transform: scale(1);
}
.service-card h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    z-index: 2;
    transition: transform 0.5s ease;
}

.service-card:hover h2{
    transform: translate(-50%, -50%) scale(1.25);
}
/* .bottomimage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bottomimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.bottom-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 2px 2px 5px black;
}

.bottom-text h2 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.3;
    margin: 10px 0;
}

.bottom-text p {
    font-size: 16px;
    margin-top: 15px;
}

.line {
    width: 450px;
    height: 1px;
    background: white;
    margin: 0 auto;
} */
.bottomimage{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.bottomimage img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(45%);
}

.bottom-text{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
    padding:20px;
}

.bottom-text h2{
    font-size:clamp(32px,5vw,60px);
    font-weight:600;
    margin:20px 0;
    line-height:1.2;
}

.bottom-text p{
    font-size:clamp(14px,2vw,20px);
    letter-spacing:1px;
}

.line{
    width:min(450px,80%);
    height:2px;
    background:white;
}
.footer{
    background:#2f2d2d;
    height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:20px;
}

.footer p{
    color:#7c7c7c;
    font-size:13px;
    font-family:Arial, Helvetica, sans-serif;
    margin:0;
}


.footer-facebook{
    width:34px;
    height:34px;
    background:black;

    border:2px solid #8aa5c2;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    text-decoration:none;

    transition:.3s;
}

.footer-facebook:hover{
    background:white;
    color:black;
}


.whatsapp{
    position:fixed;

    right:25px;
    bottom:25px;

    width:58px;
    height:58px;

    border-radius:50%;

    background:#25D366;
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}


@media (max-width:768px){

    .navbar{
        height:auto;
        flex-direction:column;
        gap:10px;
        padding:20px;
    }

    .navbar > a img{
        width:120px;
    }

    .menu-btn{
        display:block;
        position:absolute;
        right:25px;
        top:45px;
    }

    .nav-links{
        width:100%;
        background:white;

        display:none;
        flex-direction:column;
        align-items:center;

        padding:20px 0;
        gap:25px;

        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }

    .slideshow{
        z-index:1;
    }
}
@media (max-width:768px){
    .service-container{
        grid-template-columns:1fr;
        padding:20px;
    }

    .service-card{
        height:300px;
    }

    .service-card h2{
        font-size:36px;
    }

    .welcome{
        font-size:28px;
        padding:30px 20px;
    }
}

@media (max-width:768px){

    .bottomimage{
        height:300px;
    }

    .bottom-text h2{
        font-size:32px;
    }

    .bottom-text p{
        font-size:14px;
    }

    .line{
        width:180px;
    }
}