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;
}
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.hero-text {
    font-family: 'Open Sans', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-text h1 {
  font-size: 48px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 18px;
  font-weight: 600;
}

.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);
}


.service-container{
    max-width: 100%;
    margin: 0 auto;
    padding: 45px;
    display: grid;
    grid-template-columns: repeat(5, 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);
}

@media (max-width: 900px) {
    .bottom-contact {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.bottom-contact {
    width: 70%;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    font-family: "Quicksand", sans-serif;
}

.bottom-contact h2 {
    color: #d60000;
    font-size: 30px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #777;
    text-decoration: underline;
    font-size: 18px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #777;
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 8px;
}

.enquiry-form form {
    display: flex;
    flex-direction: column;
}

.enquiry-form label {
    color: #777;
    font-size: 17px;
    margin: 14px 0 8px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: "Quicksand", sans-serif;
    box-sizing: border-box;
}

.enquiry-form textarea {
    height: 110px;
    resize: vertical;
}




.enquiry-form button {
    margin-top: 15px;
    width: 100%;
    padding: 14px;
    border: none;
    background: #4d8fe3;
    color: white;
    font-size: 16px;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    border-radius: 3px;
}

.enquiry-form button:hover {
    background: #0b83bd;
}
.service-section{
    width:100%;
    min-height:700px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:120px;

    padding:100px 8%;

    background:#f7f7f7;
    box-sizing:border-box;
}



.service-text{
    width:800px;
}

.service-text h2{
    font-size:58px;
    font-family:"Cormorant Garamond", serif;
    font-weight:600;
    line-height:1.1;
    color:#111;
    margin-bottom:35px;
}

.service-text p{
    font-size:22px;
    line-height:1.8;
    color:#666;
    font-family:"Montserrat", sans-serif;
}


.service-image{
    width:800px;
}

.service-image img{
    width:100%;
    display:block;

    border-radius:22px;
    object-fit:cover;

    transition:.4s;
}

@media (max-width: 1500px) {

    body {
        overflow-x: hidden;
    }

    .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;

        position:static; 
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a {
        font-size: 17px;
    }

    .hero {
        height: 420px;
    }

    .hero-text {
        width: 90%;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-section {
        flex-direction: column;
        gap: 35px;
        padding: 60px 22px;
        text-align: center;
        min-height: auto;
    }

    .service-text {
        width: 100%;
    }

    .service-text h2 {
        font-size: 36px;
    }

    .service-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .service-image {
        width: 100%;
    }

    .service-image img {
        border-radius: 16px;
    }

    .bottom-contact {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px auto;
    }

    .bottom-contact h2 {
        font-size: 26px;
    }

    .contact-info p,
    .enquiry-form label {
        font-size: 15px;
    }

    .whatsapp {
        width: 52px;
        height: 52px;
        font-size: 30px;
        right: 18px;
        bottom: 18px;
    }

    .footer {
        height: auto;
        padding: 30px 15px;
        text-align: center;
    }
}