* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial;
    background: black;
    color: white;
}

html {
    scroll-behavior: smooth;
}

section {
    margin-bottom: 40px;
    padding: 20px;
}

section h2 {
    padding-left: 20px;
}

.top-header {

    background: linear-gradient(orange, black);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header h1{
    margin: 0;
}

.top-nav {

    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.top-nav a {

    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.top-nav a:hover {
    color: orange;
    background: black;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    color: white;
}


.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(orange, black);
}

.hero h3 {
    font-size: 36px;
    margin-bottom: 15px;
}


.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
}

.gallery img, .gallery video {
    width: 100%;
    border-radius: 10px;
    
}


.service-card {
    background: rgba(255,255,255,0.15);
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.service-card:hover {
    background: black;
    color: orange;
    transform: translateY(-3px);
}

form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    background: orange;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover,
.footer-buttons a:hover {
    opacity: 0.9;
    cursor: pointer;
}



.catalogue {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 20px;
}


.item h3{
 min-height: 50px;
 font-size: 16px;
}

.item {
    background: #1e293b;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 10px;
    background: orange;
    padding: 10px;

}

.item button {
    margin-top: 10px;
    width: 100%;
}

.item:hover{
    transform: translateY(-5px);
}


.footer-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-buttons a {
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

footer{
    padding: 20px;
    text-align: center;
}

.call-btn {
    background: #22c55e;
}

.whatsapp-btn {
    background: #25D366;
}


textarea {
    min-height: 120px;
    resize: vertical;
}

@media(max-width: 768px) {

    .hero h3 {
        font-size: 28px;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-buttons a {
        width: 80%;
        text-align: center;
    }

    .top-nav {
    justify-content: center;
    }

    .top-nav a {
    padding: 8px;
    }

      .top-header {
        flex-direction: column;
        text-align: center;
    }


}


.map-container {
    padding: 20px;
    
}

.location-btn{
    background:  #2563eb;
}

