

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


body {
    margin: 0;
    font-family: 'Avenir', Arial, sans-serif;
    line-height: 1.6;
    color: #717374;
  }

p{
  font-family : Avenir LT Std #717374 ;
}

p span{
  font-family: 'Avenir', Arial, sans-serif;
  color: #cca462;
}

hr{
  width: 300px;
  height: 3px;
  margin-top: -20px;
  margin-bottom: 20px;
  border:2px solid  #cca462;
  border-radius: 10px;
  background-color: #cca462;
}


.hr1{
  width: 160px;
}

.hr2{
  width: 320px;
}

.hr3{
  width: 350px;
}

.hr5{
  width: 140px;
}



.nav-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Header Section */
.header {
    background: transparent;
    color: #fff;
    padding: 0 0 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header .logo {
  width: 100%;
  background-color: white;
  box-shadow: 0 0 10px #717374;
  margin-bottom: 10px;
  height: 10vh;
  font-weight: bold;
  text-align: center;
}

.header .logo img{
  width: auto;
  height: 100%;
}

.header .logo{
  margin: 0px;
}

.logo-ys{
  display: flex;
   direction: rtl;
   justify-content: center;
}

.logo-ys img{
  width: 100%;
  margin-bottom: -130px;
}

.navbar{
  position: relative;
  width: fit-content;
  background-color: #1f3138;
  padding: 10px 0;

}

.navbar::before{
  content:"";
  position: absolute;
  top: 0px;
  right: -9.8%;
  width: 10%;
  background-color: #1f3138;
  clip-path: polygon(0% 100%, 10% 100%, 20% 94%, 27% 85%, 31% 74%, 37% 61%, 42% 50%, 46% 39%, 51% 28%, 57% 18%, 62% 11%, 69% 5%, 77% 1%, 88% 0%, 0% 0%);
  z-index: 1;
  height: 100%;
}

.navbar::after{
  content:"";
  position: absolute;
  top: 0px;
  left: -9.8%;
  width: 10%;
  background-color: #1f3138;
  clip-path: polygon(100% 100%, 90% 100%, 80% 94%, 73% 85%, 69% 74%, 63% 61%, 58% 50%, 54% 39%, 49% 28%, 43% 18%, 38% 11%, 31% 5%, 23% 1%, 12% 0%, 100% 0%);
  z-index: 1;
  height: 100%;
}


.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    left: 1rem; /* Ensure it stays on the right side */
    top: 30%;
    color: #717374;
    transform: translateY(-50%);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.nav-links a::before , .acolor::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background-color: #cca462;
    transition: 0.2s linear;
}

.nav-links a:hover,
.nav-links a:hover::before
 {
    width: 100%;
    color: #cca462;
}

.acolor:hover,
.acolor:hover::before{
    width: 100%;
    color: #1f3138;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Hidden by default */
    width: 250px;
    height: 100%;
    background: #1f3138;
    transition: left 0.3s;
    padding: 2rem;
    z-index: 999;
}


.sidebar ul {
    margin-top: 45px;
    margin-left: -20px;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.sidebar ul li {
    margin: 1rem 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    transition: 0.3s linear;
}

.sidebar ul li a:hover {
    margin-left: 10px;
    color: #cca462;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-container{
    z-index: -10;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -11;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px -15px 100px #717374 inset;
    z-index: -9;
}

.hero-content{
    z-index: -9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    /* margin-top: -200px; */
    width: 100%;
    height: 100%;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: -9;
}

.hero h1 {
    font-size: clamp(2rem, 2.3vw, 3rem);
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
}

.btn{
    background: transparent;
    color: #cca462;
    border: 2px solid #cca462;
    text-decoration: none;
    margin-top: 15px;
    font-size: 120%;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s linear;
}

.btn:hover {
    background: #cca462;
    box-shadow: 0 0 10px #cca462;
    color: white;
}

/* Work Section */
.work{
  width: 100%;
  height: 30vh;
  text-align: center;
  background-image:url("https://dbh-group.com/blog/wp-content/uploads/2023/05/3d-office-design-interior-2021-12-09-02-43-07-utc-1234x556.jpg") ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work .main-container{
  background:rgba(0, 60, 252,0.6) ;
  backdrop-filter: blur(2px);
  padding: 3rem 0;
  width: 100%;
  height: 100%;
}

.work-container{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.work .work-card{
  display: flex;
  width: 200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.work-card .icons{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  border: 3px solid white;
}

.work-card h4{
  font-size: 2rem;
}

.work-card p{
  text-transform: uppercase;
  font-weight: 100;
}

@media (max-width:768px) {
  .work{
    height: fit-content;
  }
  
  .work .main-container{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .work-container{
    max-width: 440px;
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

}

@media (max-width:440px) {
  .work-container{
    justify-content: center;
  }
  .logo-ys img{
    width: 100%;
    margin-bottom: -40px;
  }
}

/* About Section */
.about {
    padding: 4rem 0 0 0;
    text-align: center;
    background: #fff;
    margin-bottom: -2px;
}


 h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem; /* Increased font size for better visibility */
    color: #cca462; /* Added color for emphasis */
   text-decoration: none;
   line-height: 45px;
}

 p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}

.packing-section .heading p,
.about p{
  padding: 0 30px;
  text-align: left;
}

/* Quality and performance */

.section-container {
  padding: 3rem 0 0 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: -2px;
}

.text-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.text-content .btn{
  margin-top: 20px;
}

.image-container {
  min-width: 450px;
  max-width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;/* Goldish border color */
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .section-container {
    flex-direction: column;
  }

  .text-content{
    max-width: 85%;
    text-align: center;
  }

  .image-container{
    min-width: 0px;
    width: 80%;
  }
  .logo-ys img{
    width: 100%;
    margin-bottom: -80px;
  }
}

.container-product{
  padding: 3rem 0 0 0;
  background-color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: -2px;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.product-image {
  width: 80%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .products-container {
    flex-direction: column;
    align-items: center;
  }

  .product-image{
    width: 100%;
  } 
   .logo-ys img{
    width: 100%;
    margin-bottom: -40px;
  }
  
}

.contact-section{
  width: 100%;
  height: fit-content;
  padding: 3rem 0 5rem 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.contact-section .img-container{
  width: 50%;
  margin: auto 0;
  position: relative;
}

.img-container img{
  width: 100%;
  height: auto;
}
.contact-section h2{
  color: #717374;
   font-size: clamp(1rem, 0.3rem + 4vw, 3rem);
   margin-top: 20px;
   margin-bottom: -3px;
  }
  
  .contact-section hr{
  width: clamp(12rem, 0.3rem + 4vw, 15rem);
}

.contact-section .img-container .heading{
  position: absolute;
  top: 30%;
  left: 10%;
}

.acolor{
  text-decoration: none; 
  color: #cca462;
  transition: 0.2s linear;
  font-size: 30px;
}


@media (max-width:768px) {
  .contact-section .img-container{
    width: 90%;
  }

  .contact-section .img-container .heading{
    position: absolute;
    top: 30%;
    left: 10%;
  }

  .contact-section h2{
    font-size: 32px;
  }
  
}


 
/* Responsive Design */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .sidebar ul {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        left: -250px; /* Initially hidden */
    }

    .navbar {
        justify-content: space-between; /* Keep logo and hamburger aligned correctly */
    }


    .hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .hero p {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .about h2,
    .brands h2,
    .export h2,
    .quality h2,
    .contact h2 {
        font-size: 2rem; /* Adjusted font size for smaller screens */
    }



    .brand-items {
        flex-direction: column; /* Stack brand items vertically on small screens */
    }

    .brand-item {
        max-width: 100%; /* Allow brand items to take full width */
    }

    .contact form {
        flex-direction: column; /* Stack form elements vertically */
    }

    .navbar{
      position:unset;
    }
    
    .header .logo{
      height: 8.5vh;
      margin-top: -2px;
    }
    
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .header .logo{
      height: 7vh;
      margin-top: -2px;

    }
    .contact-section .img-container .heading {
      position: absolute;
      top: 20%;
      left: 0%;
      scale: 0.7;
  }
  .hero-content{
    margin-top: 10px;
  }
  .contact-section h2{
    margin-top: 10px;
    margin-left: 10px;
  }
  .acolor{
    font-size: 25px;
  }
  
}




/* Footer */

.footer-bottom{
  width: 100%;
  text-align: center;
  margin-top: 50px;
  padding: 1rem 0; 
  background-color: white;
}

.footer-container{
  max-width: 1170px;
  margin:auto;

}
.footer-container .row{
  display: flex;
  flex-wrap: wrap;
}
.footer-container ul{
  list-style: none;
}

.footer{
  background-color: #1f3138;
    padding: 70px 0 0 0;

}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
  font-size: 18px;
  color: #cca462;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #cca462;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child){
  margin-bottom: 10px;
}
.footer-col ul li a, .footer-col h5{
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .address{
  display: flex;
  width: fit-content;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.footer-col .address i{
  color: white;
}

.footer-col .address div{
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}


/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}

}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
.footer-container .row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, auto));
  gap: 2.5rem;
  
}
.about{
  padding: 4rem 0 0 0;
}
.about{
  margin-bottom: -1px;
}
.section-container{
  margin-bottom: -1px;
}
.container-product{
  margin-bottom: -2px;
}
.logo-ys{
  width: 80%;
}
.address {
  margin-left: -50px;
}
}