

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}


img {
    width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   LANGUAGE BAR
===================================================== */

.language-bar {
    width: 100%;
    background: #1c1c1c;
    color: #fff;
}


.language-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 38px;
}


.language-welcome {
    font-size: 13px;
    color: #ddd;
}


.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}


.language-title {
    color: #ccc;
    font-size: 13px;
    margin-right: 8px;
}


.language-title i {
    color: #d4af37;
    margin-right: 5px;
}


.language-btn {
    border: none;
    outline: none;

    background: transparent;
    color: #fff;

    padding: 5px 10px;

    font-size: 13px;
    font-family: inherit;

    cursor: pointer;

    border-radius: 3px;

    transition: all .3s ease;
}


.language-btn:hover {
    background: #d4af37;
    color: #111;
}


.language-btn.active {
    background: #d4af37;
    color: #111;
    font-weight: bold;
}


/* =====================================================
   MAIN HEADER
===================================================== */

.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}


.header-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;

    min-height: 105px;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* LOGO */

.logo-area {
    flex: 0 0 105px;
}


.logo-area img {
    width: 175px;
    height: auto;
}


/* COMPANY */

.company-area {
    flex: 1;
}


.company-area h1 {
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1.2;
}


.company-area p {
    color: #777;
    font-size: 13px;
    font-weight: bold;
    margin-top: 4px;
}


/* CONTACT */

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 10px;
}


.phone-row {
    display: flex;
    align-items: center;
    gap: 22px;

    font-size: 14px;
    font-weight: bold;
}


.phone-row a {
    white-space: nowrap;
}


.phone-row i {
    color: #d4af37;
    margin-right: 5px;
}


.social-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
}


.social-row a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #222;
    color: #fff;

    transition: all .3s ease;
}


.social-row a:hover {
    background: #d4af37;
    color: #111;
}


/* =====================================================
   STICKY NAVIGATION
===================================================== */

/* ==========================================
   STICKY NAVIGATION BAR
========================================== */

.navbar {
    width: 100%;
    min-height: 55px;

    background: #222222;

    position: sticky;
    position: -webkit-sticky;

    top: 0;
    left: 0;

    z-index: 99999;

    display: block;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.30);
}


/* NAV CONTAINER */

.nav-container {
    width: 92%;
    max-width: 1400px;

    min-height: 55px;

    margin: 0 auto;

    display: flex;

    align-items: stretch;

    justify-content: center;

    flex-wrap: nowrap;
}


/* NORMAL NAV LINKS */

.nav-container > a,
.dropdown > .dropbtn {

    min-height: 55px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #ffffff;

    background: transparent;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition: all 0.3s ease;
}


/* HOVER */

.nav-container > a:hover,
.dropdown > .dropbtn:hover {

    background: #d4af37;

    color: #111111;
}


/* ACTIVE PAGE */

.nav-container > a.active {

    background: #d4af37;

    color: #111111;
}


/* ICON */

.nav-container i {

    font-size: 14px;
}


/* ==========================================
   DROPDOWN
========================================== */

.dropdown {

    position: relative;

    display: flex;

    align-items: stretch;
}


/* ARROW */

.dropdown .arrow {

    font-size: 9px;

    margin-left: 3px;
}


/* DROPDOWN MENU */

.dropdown-menu {

    position: absolute;

    top: 55px;

    left: 0;

    width: 230px;

    display: none;

    flex-direction: column;

    background: #222222;

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.3);

    z-index: 100000;
}


/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu {

    display: flex;
}


/* DROPDOWN LINKS */

.dropdown-menu a {

    display: block;

    width: 100%;

    padding: 13px 18px;

    color: #ffffff;

    background: #222222;

    border-bottom: 1px solid #444444;

    font-size: 14px;

    transition: all 0.3s ease;
}


/* DROPDOWN HOVER */

.dropdown-menu a:hover {

    background: #d4af37;

    color: #111111;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .nav-container {

        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        flex-wrap: nowrap;
    }


    .nav-container > a,
    .dropdown > .dropbtn {

        padding-left: 18px;

        padding-right: 18px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .navbar {

        position: sticky;

        top: 0;
    }


    .nav-container {

        width: 100%;

        flex-direction: column;

        overflow: visible;
    }


    .nav-container > a,
    .dropdown,
    .dropdown > .dropbtn {

        width: 100%;

        min-height: 48px;
    }


    .nav-container > a,
    .dropdown > .dropbtn {

        justify-content: flex-start;

        padding-left: 25px;
    }


    .dropdown {

        flex-direction: column;
    }


    .dropdown-menu {

        position: static;

        width: 100%;
    }


    .dropdown:hover .dropdown-menu {

        display: flex;
    }

}

/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {

    min-height: 470px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background-image:
        url("assets/images/about-banner.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, .62);
}


.hero-content {

    position: relative;

    z-index: 2;

    color: #fff;

    padding: 20px;
}


.hero-small {

    display: block;

    color: #d4af37;

    font-size: 15px;

    font-weight: bold;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.hero-content h2 {

    font-size: 58px;

    letter-spacing: 5px;

    line-height: 1.1;
}


.gold-line {

    width: 90px;
    height: 4px;

    background: #d4af37;

    margin: 20px auto;
}


.hero-content p {

    font-size: 20px;

    color: #eee;
}


/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    padding: 100px 0;
}


.about-container {

    width: 92%;
    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 70px;
}


.about-image {

    flex: 1;
}


.about-image img {

    border-radius: 6px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .16);
}


.about-content {

    flex: 1;
}


.section-label {

    display: inline-block;

    color: #b28b00;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.about-content h2 {

    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 25px;
}


.about-content p {

    color: #666;

    margin-bottom: 17px;
}


.gold-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 10px;

    padding: 14px 27px;

    background: #222;

    color: #fff;

    font-weight: bold;

    transition: all .3s ease;
}


.gold-button:hover {

    background: #d4af37;

    color: #111;
}


/* =====================================================
   MISSION
===================================================== */

.mission-section {

    padding: 95px 5%;

    background: #f5f5f5;
}


.section-heading {

    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}


.section-heading &gt; span {

    color: #b28b00;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;
}


.section-heading h2 {

    font-size: 40px;

    margin: 7px 0;
}


.heading-line {

    width: 70px;
    height: 3px;

    margin: 15px auto;

    background: #d4af37;
}


.section-heading p {

    color: #777;

    max-width: 650px;

    margin: auto;
}


.mission-container {

    max-width: 1250px;

    margin: auto;

    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}


.mission-card {

    flex: 1 1 240px;

    background: #fff;

    padding: 38px 25px;

    text-align: center;

    border-bottom: 4px solid transparent;

    transition: all .3s ease;
}


.mission-card:hover {

    transform: translateY(-8px);

    border-bottom-color: #d4af37;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}


.mission-icon {

    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #222;

    color: #d4af37;

    border-radius: 50%;

    font-size: 26px;
}


.mission-card h3 {

    font-size: 21px;

    margin-bottom: 12px;
}


.mission-card p {

    color: #777;
}


/* =====================================================
   WHY FENCEWALL
===================================================== */

.why-section {

    padding: 100px 0;
}


.why-container {

    width: 92%;
    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 70px;
}


.why-content {

    flex: 1;
}


.why-content h2 {

    font-size: 40px;

    line-height: 1.2;

    margin: 12px 0 25px;
}


.why-content h2 strong {

    display: block;

    color: #b28b00;
}


.why-content p {

    color: #666;

    margin-bottom: 16px;
}


.check-list {

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.check-list div {

    display: flex;

    align-items: center;

    font-weight: bold;
}


.check-list i {

    color: #b28b00;

    margin-right: 10px;
}


.why-image {

    flex: 1;
}


.why-image img {

    border-radius: 6px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .15);
}


/* =====================================================
   VALUES
===================================================== */

.values-section {

    padding: 95px 5%;

    background: #f5f5f5;
}


.values-container {

    max-width: 1250px;

    margin: auto;

    display: flex;

    flex-wrap: wrap;

    gap: 25px;
}


.value-card {

    flex: 1 1 240px;

    background: #fff;

    padding: 38px 25px;

    text-align: center;

    transition: all .3s ease;
}


.value-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}


.value-card &gt; i {

    font-size: 36px;

    color: #b28b00;

    margin-bottom: 18px;
}


.value-card h3 {

    font-size: 21px;

    margin-bottom: 10px;
}


.value-card p {

    color: #777;
}


/* =====================================================
   CALL TO ACTION
===================================================== */

.cta-section {

    background: #222;

    color: #fff;

    padding: 65px 0;
}


.cta-container {

    width: 92%;
    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;
}


.cta-content {

    flex: 1;
}


.cta-content &gt; span {

    color: #d4af37;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;
}


.cta-content h2 {

    font-size: 36px;

    line-height: 1.2;

    margin: 8px 0 10px;
}


.cta-content p {

    color: #ccc;
}


.cta-button-area {

    flex: 0 0 auto;
}


.cta-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 16px 30px;

    background: #d4af37;

    color: #111;

    font-weight: bold;

    white-space: nowrap;

    transition: all .3s ease;
}


.cta-button:hover {

    background: #fff;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #111;

    color: #fff;
}


.footer-container {

    width: 92%;
    max-width: 1400px;

    margin: auto;

    padding: 65px 0;

    display: flex;

    flex-wrap: wrap;

    gap: 45px;
}


.footer-column {

    flex: 1 1 210px;
}


.footer-about img {

    width: 120px;

    margin-bottom: 18px;
}


.footer-about p {

    color: #aaa;
}


.footer-column h3 {

    color: #d4af37;

    font-size: 18px;

    margin-bottom: 20px;
}


/* FOOTER LINKS */

.footer-column &gt; a {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #aaa;

    margin-bottom: 10px;

    transition: all .3s ease;
}


.footer-column &gt; a:hover {

    color: #d4af37;

    padding-left: 5px;
}


.footer-column &gt; a i {

    color: #d4af37;

    font-size: 10px;
}


/* FOOTER CONTACT */

.footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #aaa;

    margin-bottom: 12px;
}


.footer-contact p i {

    width: 20px;

    color: #d4af37;

    margin-top: 5px;
}


.footer-contact a:hover {

    color: #d4af37;
}


/* FOOTER SOCIAL */

.footer-social-icons {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-social-icons a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #555;

    border-radius: 50%;

    color: #fff;

    transition: all .3s ease;
}


.footer-social-icons a:hover {

    background: #d4af37;

    color: #111;

    border-color: #d4af37;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    width: 92%;
    max-width: 1400px;

    margin: auto;

    padding: 20px 0;

    border-top: 1px solid #333;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    color: #888;

    font-size: 13px;
}


.footer-bottom div {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-bottom a:hover {

    color: #d4af37;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {


    .header-container {

        flex-wrap: wrap;

        padding: 15px 0;
    }


    .company-area {

        text-align: center;
    }


    .header-contact {

        width: 100%;

        align-items: center;
    }


    .social-row {

        justify-content: center;
    }


    .nav-container {

        flex-wrap: wrap;
    }


    .about-container,
    .why-container {

        flex-direction: column;

        gap: 45px;
    }


    .about-image,
    .about-content,
    .why-content,
    .why-image {

        width: 100%;
    }


    .cta-container {

        flex-direction: column;

        text-align: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {


    /* LANGUAGE */

    .language-container {

        width: 96%;

        flex-direction: column;

        justify-content: center;

        gap: 5px;

        padding: 6px 0;
    }


    .language-welcome {

        font-size: 12px;

        text-align: center;
    }


    .language-selector {

        flex-wrap: wrap;

        justify-content: center;
    }


    .language-title {

        width: 100%;

        text-align: center;

        margin-right: 0;
    }


    /* HEADER */

    .header-container {

        width: 95%;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }


    .logo-area {

        flex-basis: auto;
    }


    .company-area h1 {

        font-size: 23px;
    }


    .company-area p {

        font-size: 12px;
    }


    .header-contact {

        width: 100%;

        align-items: center;
    }


    .phone-row {

        flex-direction: column;

        gap: 8px;
    }


    /* NAV */

    .navbar {

        position: sticky;

        top: 0;
    }


    .nav-container {

        width: 100%;

        flex-direction: column;
    }


    .nav-container &gt; a,
    .dropdown {

        width: 100%;
    }


    .nav-container &gt; a,
    .dropdown &gt; a {

        width: 100%;

        min-height: 48px;
    }


    .dropdown-menu {

        position: static;

        width: 100%;
    }


    /* HERO */

    .about-hero {

        min-height: 330px;
    }


    .hero-content h2 {

        font-size: 38px;

        letter-spacing: 3px;
    }


    .hero-content p {

        font-size: 16px;
    }


    /* SECTIONS */

    .about-section,
    .mission-section,
    .why-section,
    .values-section {

        padding: 65px 5%;
    }


    .about-content h2,
    .why-content h2 {

        font-size: 31px;
    }


    .section-heading h2 {

        font-size: 31px;
    }


    /* CTA */

    .cta-section {

        padding: 55px 0;
    }


    .cta-content h2 {

        font-size: 30px;
    }


    /* FOOTER */

    .footer-container {

        width: 90%;

        flex-direction: column;

        gap: 35px;
    }


    .footer-bottom {

        width: 90%;

        flex-direction: column;

        text-align: center;
    }


    .footer-social-icons {

        justify-content: flex-start;
    }

}
</code></pre></body></html><!--EndFragment-->
</body>
</html>