@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-79080fc9923436a1892a587676f25814.woff2) format('woff2');font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-cb90f250807b79983892f63bf0582499.woff2) format('woff2');font-weight:200;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-a56895cb781b2893683438f24cb71da5.woff2) format('woff2');font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-06301e20a0da865a77cfdb8f2a2defbb.woff2) format('woff2');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-6abd9b19fa74eb93c4eb69a16fb69fa7.woff2) format('woff2');font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-6c5cea0c2fe85d8b27e80d9845a40eb2.woff2) format('woff2');font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-281e130f75e1efa0fc2e00ec30909f0a.woff2) format('woff2');font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-37c96eb55a9036356dd23a656165b394.woff2) format('woff2');font-weight:800;font-style:normal;font-display:swap}@font-face{font-family:Vazirmatn;src:url(/assets/fonts/Vazirmatn-1451b90728635882eee205ccc971f771.woff2) format('woff2');font-weight:900;font-style:normal;font-display:swap}.bs-icon{--bs-icon-size:.75rem;display:flex;flex-shrink:0;justify-content:center;align-items:center;font-size:var(--bs-icon-size);width:calc(var(--bs-icon-size) * 2);height:calc(var(--bs-icon-size) * 2);color:var(--bs-primary)}.bs-icon-xs{--bs-icon-size:1rem;width:calc(var(--bs-icon-size) * 1.5);height:calc(var(--bs-icon-size) * 1.5)}.bs-icon-sm{--bs-icon-size:1rem}.bs-icon-md{--bs-icon-size:1.5rem}.bs-icon-lg{--bs-icon-size:2rem}.bs-icon-xl{--bs-icon-size:2.5rem}.bs-icon.bs-icon-primary{color:var(--bs-white);background:var(--bs-primary)}.bs-icon.bs-icon-primary-light{color:var(--bs-primary);background:rgba(var(--bs-primary-rgb),.2)}.bs-icon.bs-icon-semi-white{color:var(--bs-primary);background:rgba(255,255,255,.5)}.bs-icon.bs-icon-rounded{border-radius:.5rem}.bs-icon.bs-icon-circle{border-radius:50%}.fit-cover{object-fit:cover}#hero{background:url("/assets/img/logo_gold.svg?h=6246acc18576cb8d8d0dfddc49235ac1") center/50% no-repeat}@media (min-width:1200px){#hero{background:url("hero.jpg") center/cover no-repeat}}#Video_clip{text-align:center}iframe{width:98%;height:400px}@media (min-width:992px){iframe{width:1000px;height:500px}}@container (min-width:761px){#products{width:100%;height:260vh}}#products{width:100%;height:265vh}@container (min-width:569px){#products{width:100%;height:500vh}}@container (min-width:353px){#products{width:100%;height:1800vh}}
/* Fullscreen video background */
.video-background-section {
    position: relative;
    width: 100%;
    height: 100vh; /* The section will cover the full viewport height */
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section without distortion */
    object-position: center;
    z-index: -1;
}

/* Ensure the content stays centered and readable */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 20px; /* Add some padding for better mobile responsiveness */
}

/* Optional: Media query for smaller devices */
@media (max-width: 768px) {
    .video-bg {
        object-fit: contain; /* For smaller screens, make sure the video fits nicely */
    }

    .content h1, .content h3 {
        font-size: 1.5rem; /* Adjust font size for mobile */
        margin: 20px;
    }
}

/* Fixed navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(230, 190, 105, 1); /* Initial background color */
    transition: background 0.5s ease, color 0.5s ease;
}

/* On scroll: Change navbar styles */
.navbar.scrolled {
    background-color: black; /* Color after scrolling */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Initial styles for the navbar logo */
.navbar-logo {
    width: 150px;
    height: 30px;
    transition: width 0.5s ease, height 0.5s ease; /* Optional: Add transition for smooth resizing */
}

/* On scroll: Change link colors */
.navbar.scrolled .nav-link {
    color: #e6be69; /* Change the link color to match the initial navbar background */
}

/* Button style */
.contact-btn {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bs-emphasis-color);
    border: none;
    font-family: 'Vazirmatn';
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* On scroll: Change button background and text color */
.navbar.scrolled .contact-btn {
    background-color: #e6be69;
    color: black;
}


.wrapper img {
    height: 60vh; /* Default height */
}

@media (max-width: 768px) {
    .wrapper img {
        height: 50vh; /* Height for tablets and smaller screens */
    }
}

@media (max-width: 576px) {
    .wrapper img {
        height: 40vh; /* Height for mobile screens */
    }
}

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

section {
    overflow: auto; /* Prevent overflow */
    padding: 50px 0; /* Ensure proper spacing */
    margin-bottom: 0;
}

#about-us {
    position: relative;
    z-index: 1;
    height: 500vh; /* Specific height for this section */
    background: rgba(0, 0, 0, 0.5);
}


  #contact-us {
    z-index: 2;
  }
  