@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Play", serif;
    font-weight: 700;
    font-style: normal;
    scroll-behavior: smooth;
}
html {
    scroll-behavior:smooth;
  }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 50px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar {
    display: flex;
}

.navbar a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-left: 30px;
    text-decoration: none;
    position: relative;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.5s;
}

.navbar a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 200px;
    background: #1a1a1a;
    padding: 20px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    z-index: 1100;
    border-radius: 10px;
    
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    text-align: center;
    
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .logo{
        left: 40%;
    }
    .navbar {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}
footer {
    background-color: #1a1a1a;
    padding: 20px 40px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    color: #fff;
    padding-bottom: 20px;
}

.phone {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 20px;
}

a {
    color: #7cc0ff;
    text-decoration: none;
}

.title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ccc;
    padding-bottom: 20px;
}

.footer-bottom {
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding-top: 20px;

}

.footer-bottom nav a {
    margin-right: 15px;
    color: #bbb;
}

.scroll-top {
    background: none;
    border: 1px solid #444;
    color: #bbb;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
    margin-left: 20px;
}

.scroll-top:hover {
    background-color: #444;
}
.about,
.contact {
    min-height: 100vh; 
    position: relative;
    padding: 50px 5%;
}

.contact h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 35px;
    color: #222;
    
}
.home{
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-image: url("/images/image1.jpg");
    transition: background-image 1s ease-in-out;

}
.home::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.home h1{
    text-align: center;
    color: #fff;
    font-size: 64px;
	margin: 0;
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}



@media (max-width: 1024px) {
    .home {
        background-attachment: scroll; 
        background-size: cover; 
    }
    
    .home h1 {
        font-size: 6vw;
        top: 30%;
    }
    .home p {
        font-size: 2.5vw;
    }
}

@media (max-width: 768px) {
    .home {
        background-size: cover;
    }

    .home h1 {
        font-size: 7vw;
    }
    .home p {
        font-size: 3vw;
    }
}

@media (max-width: 480px) {
    .home {
        background-size: cover;
        background-position: center;
    }

    .home h1 {
        font-size: 8vw;
    }
    .home p {
        font-size: 4vw;
    }
}

.services {
    text-align: center;
    padding: 50px 5%;
    background: #f4f4f4;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 35px;
    color: #222;
}

.service {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service img {
    width: 120px;
    height: auto;
}

.service h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}
.service h3 {
    font-size: 20px;
    color: #7A2627;
    margin-bottom: 10px;
}
.service p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    text-align: left;
}

.service table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.service table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
}

.service table tr:nth-child(odd) {
    background: #f9f9f9;
}

@media (max-width: 1024px) {
    .service {
        flex-direction: column;
        text-align: center;
    }
    
    .service img {
        width: 100px;
    }

    .service p {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .service {
        padding: 15px;
    }

    .service h2 {
        font-size: 24px;
    }

    .service p {
        font-size: 14px;
    }

    .service table td {
        font-size: 12px;
    }
}
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about h1 {
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
    margin-top: 35px;
    color: #222;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;

}

.about-container:nth-child(even) {
    flex-direction: row-reverse;
}

.about-container .text {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.about-container .imageInfo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-container .imageInfo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-container:nth-child(even) {
        flex-direction: column;
    }

    .about-container .text {
        text-align: center;
    }
}
.contact {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-info,
.map-container {
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info p {
    font-size: 1.4em;
    margin: 15px 0;
    color: #444;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4em;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-container h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.map-container #map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .map-container {
        text-align: center;
        width: 100%;
    }

    .map-container #map {
        height: 350px;
    }
}