* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('background.png') no-repeat center center;
    background-size: cover;
    color: #333;
}

.header {
    background-color: black;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: opacity 0.3s ease;
    padding: 20px 50px;
}


.navbar {
    display: flex;
    gap: 20px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
}


.navbar a:not(:last-child)::after {
    content: " | ";
    color: white;
    margin-left: 10px;
    font-weight: normal;
}

.navbar a:hover {
    color: #27ae60;
}
.hidden-header {
    opacity: 0;
    pointer-events: none;
}

body {
    padding-top: 80px; 
}

.footer {
    background-color: black;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	margin-top: 40px;
}
.logo-header {
    width: 100px;
    margin-right: auto;
    margin-left: 15%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-header:hover {
    transform: scale(1.2); 
}

.logo-footer {
    width: 150px;
    filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.3));
}
.logo {
    width: 150px;
    filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.5));
}

.company-name {
    font-size: 2.2em;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    flex-grow: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
}



.contact {
    margin-bottom: 40px;
}

h1, h2 {
    font-size: 2em;
    color: white;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}
@media (max-width: 768px) {
    h1, h2 {
        font-size: 1.6em; 
    }
    p {
        font-size: 1em; 
    }
}
.contact a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.welcome-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2000;
}

.welcome-screen img {
    width: 200px;
    cursor: pointer; 
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.welcome-screen img:hover {
    transform: scale(1.1); 
}


.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.why-us {
    text-align: center;
    padding: 50px;
}
.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 22%;
    text-align: center;
}
.stat img {
    width: 50px;
    margin-bottom: 10px;
}
.stat h3 {
    font-size: 2em;
    margin: 5px 0;
    color: #27ae60;
}
.stat p {
    font-size: 1.2em;
}
@media (max-width: 1024px) {
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat {
        width: 100%; 
    }
}

@media (max-width: 768px) {
    .stat {
        width: 100%; 
    }
}


.stat {
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}
.fence-table {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.fence-table thead {
    background: #27ae60;
    color: white;
    font-weight: bold;
}
h3 {
	color: white;
}
.fence-table th, .fence-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fence-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.2);
}


@media (max-width: 600px) {
    .fence-table {
        font-size: 0.9em;
    }
}
html {
    scroll-behavior: smooth;
	
}
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
}
.fence-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fence-gallery img {
    width: calc(33.33% - 20px);
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fence-gallery img:hover {
    transform: scale(1.05);
}


@media (max-width: 900px) {
    .fence-gallery img {
        width: calc(50% - 20px);
    }
}


@media (max-width: 600px) {
    .fence-gallery img {
        width: 100%;
    }
}

.hamburger {
    display: none;
    font-size: 3em;
    cursor: pointer;
    color: white;
    position: absolute;
    left: 80%;
    transform: translateX(-50%); 
    top: 20px;
    z-index: 1001;
}


@media (max-width: 900px) {
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(0, 0, 0, 0.95);
        text-align: center;
        padding: 20px 0;
        z-index: 1000;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    }

    .navbar a {
        display: block;
        padding: 15px;
        font-size: 1.5em;
        color: white;
        text-decoration: none;
    }

    .navbar a:not(:last-child)::after {
        content: "";
    }

    .hamburger {
        display: block;
    }

    .navbar.active {
        display: flex;
    }
}


  .business-card {
            display: flex;
            justify-content: space-between;
            max-width: 1100px;
            margin: 50px auto;
            background: rgba(30, 30, 30, 0.9);
            padding: 30px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }


        .company-info {
            width: 60%;
            padding-right: 20px;
			text-align: left;
        }


        .contact-info {
            width: 35%;
            background: #222;
            color: white;
            padding: 20px;
            border-radius: 10px;
        }


        .company-info h2, .contact-info h2 {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #27ae60;
        }


        .company-info p, .contact-info p {
            font-size: 1.1em;
            margin-bottom: 10px;
            line-height: 1.5;
        }


        .contact-info p i {
            color: #27ae60;
            margin-right: 10px;
        }


        .contact-info a {
            color: #27ae60;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }


        @media (max-width: 900px) {
            .business-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .company-info, .contact-info {
                width: 100%;
                padding: 20px;
            }
        }
		
		

.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: ;
	margin-top: 100px;
}


.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px; 
    background: rgba(30, 30, 30, 0.9); 
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}


.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.about-text {
    width: 55%;
    color: white;
    text-align: left;
    padding: 20px;
}

.about-text h2 {
    font-size: 1.8em;
    color: #27ae60;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}


@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-text {
        width: 90%;
        text-align: center;
    }
}

.partners {
    text-align: center;
    padding: 50px 0;

}

.partners h2 {
    font-size: 2em;
    color: white;
    margin-bottom: 30px;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: auto;
}


.partner-box {
    background: black; 
    padding: 15px; 
    border-radius: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.partner-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.2);
}


.partner-box img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
}


.partner-box img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}



@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}


@media (max-width: 600px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .partner-box {
        padding: 10px; 
    }
}
#contact {
    padding-top: 100px; 
    scroll-margin-top: 100px;
}