header.sticky {
  /* background-color: #002d5a; */
  background-color: #fff;


  a {
    color: black !important;
  }
}

.active4 {
  color: #FE9150 !important;
}

header {
  padding: 18px 0;
  position: sticky;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  transition: 0.4s;

  .logo {

    /* width: 15%; */
    img {
      width: 180px;
    }
  }

  .nav {
    /* width: 85%; */
    display: flex;

    ul {
      display: flex;

      li {
        padding: 10px 20px;

        a {
          text-transform: uppercase;
          color: #000000;
          font-size: 15px;

          &:hover {
            color: #FE9150;
          }

        }
      }
    }

    .butn {
      margin-left: 20px;

      a {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 10px 15px;
        border-radius: 6px;
        color: #534A45;
      }
    }
  }
}

.home-banner {


  img {
    height: 70vh;
    object-fit: cover;
    object-position: center;
  }

  .main {
    position: relative;

    h2 {
      z-index: 999;
      color: white;
      text-transform: uppercase;
      font-size: 45px;
      text-align: center;
      position: absolute;
      width: 500px;
      left: calc(50% - 250px);
      top: calc(50% - 104px);
      line-height: 60px;

      span {
        border-bottom: 3px solid white;
        margin-top: 10px;
      }
    }
  }

  .slick-prev {
    left: 40px;
    z-index: 999;
  }

  .slick-next {
    right: 45px;
    z-index: 999;
  }

  .slick-prev:before,
  .slick-next:before {
    font-family: 'slick';
    font-size: 37px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
  }
}

.Progress {
  padding: 50px 0;

  img{
    height: 420px;
    object-fit: cover;
  }

  .main {
    margin: 20px;

    h2 {
      font-weight: 600;
      font-size: 32px;
      margin-bottom: 20px;
      color: #FF5D00;
    }

    p {
      font-size: 17px;
      margin-bottom: 20px;
      color: gray;
    }

    h4 {
      margin: 20px 0;
      font-size: 20px;
    }
  }
 
}

.Exhibitions {
  padding: 60px 0;

  h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    background-color: #80808033;
    padding: 20px 0;
    color: #FF5D00;
  }

  img {
    margin-top: 20px;
  }
}



.products-section {
  padding: 3rem 2rem;
  text-align: center;

  img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
  }

  h2 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ff5d00;
  }

  .product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    transition: transform 0.3s;
  }

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

  .product-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }



  .product-card button {
    background: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .product-card button:hover {
    background: darkred;
  }
}


.footer {
  background: #f8f8f8;
  color: #333;
  padding: 40px 10px;

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  main {
    display: flex;
    align-items: center;

    i {
      margin-right: 10px;
      font-size: 20px;
      color: #FF5D00;
    }

    img {
      width: 30px;
      margin-right: 15px;
    }

  }

  .social-icons {
    text-align: center;
    margin: 20px 0;
  }

  .footer-col {
    flex: 1 1 220px;
  }

  .footer-col h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    text-transform: uppercase;
    color: #ff5d00;
  }

  .footer-col ul {
    list-style: none;
    padding: 20px 0;

  }

  .footer-col ul li {
    margin-bottom: 15px;
    cursor: pointer;

    a {
      color: black;

      &:hover {
        color: #FF5D00;
      }
    }
  }

  .footer-col ul li i {
    margin-right: 8px;
    color: #FF5D00;

  }

  .footer-col p {
    margin: 8px 0;
    line-height: 23px;
    color: black;

    a {
      color: black;

      &:hover {
        color: #FF5D00;
      }
    }

    i {
      margin-right: 10px;
      color: gray;
    }
  }

  .logo {
    max-width: 180px;
    margin-bottom: 10px;
  }

  .social-icons i {
    font-size: 20px;
    margin-right: 10px;
    color: gray;
    cursor: pointer;

    &:hover {
      color: #FF5D00;
    }
  }

  .footer-bottom {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #ccc;
    margin-top: 20px;

    a {
      color: #FF5D00;

      &:hover {
        color: #000;
      }
    }
  }
}


.gallery {
  padding: 50px 0;

  img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
  }

  h2 {
    text-align: center;
    font-size: 33px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ff5d00;
  }

  .main {
    border: 1px solid #8080805c;
  }

}


.faq-section {
  background-color: #f5f0f0;
  padding: 40px 0;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #ff5d00;
}

.faq-container {
  background-color: #fff;
  border-radius: 4px;
  max-width: 900px;
  margin: 40px auto;

}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  background: #fff;
  border: none;
  outline: none;
  width: 100%;
  padding: 15px 20px;
  font-size: 17px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: bold;
}

.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;

  p {
    line-height: 25px;
    color: gray;
  }

  ul {
    margin-left: 20px;

    li {
      padding: 8px 0;
      list-style-type: disc;
      color: gray;
    }
  }
}

.faq-item:last-child {
  border-bottom: none;
}

.Explore {
  padding: 50px 0;

  h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    text-transform: uppercase;
    color: #ff5d00;
  }

  h4 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;

  }

  p {
    margin-bottom: 20px;
    font-size: 17px;
  }

  ul {
    li {
      padding: 7px 0;
      list-style-type: disc;
      color: gray;
    }
  }
}

/* about */

.about {
  padding: 50px 0;

  h4 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  p {
    line-height: 28px;
    font-size: 17px;
    color: gray;
  }

  img {
    height: 400px;
    object-fit: cover;
  }

}

.about-banner {
  background-image: url(../img/about.jpg);
  height: 60vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;

  h2 {
    z-index: 999;
    color: black;
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    position: absolute;
    width: 370px;
    left: calc(50% - 185px);
    top: calc(50% - 52px);
  }
}

.experiences {
  padding: 40px 0;

  img {
    height: 400px;
    object-fit: cover;
  }

  h2 {
    margin-left: 20px;
    margin-bottom: 15px;
  }

  p {
    line-height: 28px;
    margin-left: 20px;
    color: gray;
  }
}

.vision-section {
  padding: 70px 0;
  /* background-image: url(../img/vision.png); */
  background-image: url(../img/what11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 20px 0;
  position: relative;
  z-index: 9999;

  &::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.8;
  }

  h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
    position: relative;
    z-index: 9999;
    color: #FF5D00;
  }

  .box {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
    color: #000;
    margin-top: 20px;
    position: relative;
    z-index: 999;

    h3 {
      font-size: 25px;
      padding-bottom: 15px;

    }

    p {
      color: gray;
      line-height: 28px;
      z-index: 9999;
    }

    button {
      background: none;
      border: none;
      cursor: pointer;
      margin-left: 20px;
      margin-top: 10px;
      color: #000000c7;
    }
  }
}

.mission-section {
  padding: 70px 0;

  h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    margin-bottom: 30px;
    color: #FF5D00;
  }

  .box {
    border: 1px solid gray;
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;

    p {
      line-height: 28px;
      color: gray;
    }

    a button {
      margin-top: 10px;
      background: none;
      border: none;
      cursor: pointer;
    }
  }
}


.contact {
  background-color: #fce69c;
  padding: 50px 0;

  .contact-container {

    .contact-info,
    .contact-form {
      background-color: #fce69c;
      padding: 20px;
    }

    .contact-info h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #ff5d00;
    }

    .contact-info p {
      margin: 10px 0;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .contact-info i {
      margin-right: 10px;
    }

    .social-icons {
      margin-top: 20px;

      a {
        margin-right: 15px;
        font-size: 20px;
        color: black;
        text-decoration: none;
      }
    }

    .contact-form {
      background-color: #fff;
      border-radius: 6px;
      padding: 30px 20px;
    }

    .contact-form h2 {
      margin-bottom: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .contact-form button {
      padding: 10px 20px;
      border: 1px solid #000;
      background: #fff;
      font-weight: bold;
      cursor: pointer;
    }
  }
}

.why-choose {
  padding: 50px 0;

  img {
    height: 450px;
    object-fit: cover;
  }

  h2 {
    margin-bottom: 15px;
    font-size: 30px;
    color: #ff5d00;
  }

  p {
    font-size: 17px;
    padding: 10px 0;
    line-height: 25px;
    color: gray;
  }

  ul {
    li {
      padding: 10px 0;
      line-height: 25px;

      span {
        color: black;
        font-weight: bold
      }
    }
  }
}

/* contact */

.map {
  padding: 20px 0;
}

/* prees page */
.press {
  padding: 40px 0;

  h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff5d00;
  }

  p {
    line-height: 25px;
    margin-top: 10px;
    color: gray;
  }
}

.Stress {
  padding: 20px 0;

  h3 {
    font-size: 22px;
  }

  p {
    margin-top: 16px;
    line-height: 25px;
  }
}

.delem {
  padding: 20px 0;

  h3 {
    font-size: 22px;
  }

  ul {
    margin-top: 20px;

    li {
      padding: 6px 0;
      list-style-type: disc;
    }
  }
}

.Electric {
  padding: 30px 0;

  h3 {
    font-size: 22px;
  }

  ul {
    margin-top: 20px;

    li {
      padding: 6px 0;
      list-style-type: disc;
    }
  }

  p {
    line-height: 23px;
    margin-top: 20px;
  }

  .main {
    margin-left: 30px;
  }
}


/* toggel  start*/
.toggle-btn {
  display: none;
  cursor: pointer;
  background-color: #000;
}

.toggle-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #b72f61;
}

.mobilenav {
  display: none;
}

.side-bar {
  background: white;
  backdrop-filter: blur(15px);
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -350px;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: right;
  z-index: 999999;
}

.side-bar::-webkit-scrollbar {
  width: 0px;
}

.side-bar.active {
  right: 0;
}

.side-bar .menu {
  width: 100%;
  margin-top: 30px;
}

.side-bar .side-logo {
  background-color: #fff;
}

.side-bar .side-logo img {
  width: 200px;
  margin: 15px;
  margin-left: 70px;
}

.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}

.side-bar .menu .item a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 30px;
  line-height: 40px;
}

.side-bar .menu .item a:hover {
  background: #db4242;
  transition: 0.3s ease;
  color: white;
}

.side-bar .menu .item i {
  margin-right: 15px;
}

.side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu {
  background: #262627;
  display: none;
}

.side-bar .menu .item .sub-menu a {
  padding-left: 80px;
}


.sub-menu {
  display: none;
  /* Hide submenu by default */
  padding-left: 15px;
  /* Optional for indentation */
  background: #e0e0e0;
}

.sub-menu.open {
  display: block;
  /* Show submenu when the 'open' class is added */
}

.side-bar {
  width: 300px;
  background: #f0f0f0;
  padding: 15px;
}

/* end */






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

  header {
    display: none;
  }

  /* start */

  .side-bar .close-btn {
    font-size: 20px;
    padding: 5px;
    border: 1px solid gray;
    width: 30px;
    margin-left: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold
  }

  .side-bar {
    background: white;
    backdrop-filter: blur(15px);
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -350px;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: right;
    z-index: 999999;
  }

  .toggle-btn {
    display: block;
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #e7e7e7;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .toggle-btn .logo {
    margin-left: 10px;

    img {
      height: 65px;
      width: 181px;
    }
  }

  .toggel-btn-pad {
    border: 1px solid gray;
    padding: 3px 6px;
    text-align: center;
    margin-right: 40px;
  }

  .side-bar {
    display: block;
  }

  .side-bar .menu .item a {
    color: black;
  }

  /*  */
  .side-bar .menu .item {
    position: relative;
  }

  .side-bar .menu .item i {
    position: absolute;
    right: 0;
    top: 13px;
    transition: 0.3s ease;
  }

  .side-bar .menu .item .drop-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: static;
    display: none;
    padding: 0px;
    padding-left: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .side-bar .menu .item .drop-menu ul {
    background-color: transparent;
    margin: 0px;

    li {
      width: 100%;
      padding: 0px;
    }
  }

  /* end */



  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .footer {

    /* .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    } */

    .footer-col {
      max-width: 100%;
    }
    .footer-col ul {
      list-style: none;
      padding: 10px 0;
  }

    .footer-col ul li {
      display: block;
     padding: 3px 0;
    }
    .footer-bottom {
     p{
      line-height: 23px;
     }
  }
  }

  .vision-section {
    padding: 50px 0;
    /* background-image: url(../img/vision.png); */
    background-image: url(../img/what11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 20px 0;
    position: relative;
    z-index: 9999;
  }

  .vision-section h2 {
    margin-bottom: 25px;
  }

 

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .home-banner {
    img {
      height: 50vh;
      object-fit: cover;
      object-position: center;
    }

       .main {
        h2 {
          z-index: 999;
          color: white;
          text-transform: uppercase;
          font-size: 30px;
          text-align: center;
          position: absolute;
          width: 450px;
          left: calc(50% - 225px);
          top: calc(50% - 80px);
          line-height: 40px;
        }
      }
    }

    .Progress {
        padding: 40px 0;
     .main {
        h2 {
            font-weight: 600;
            font-size: 30px;
            margin-bottom: 20px;
            color: #FF5D00;
        }
    }
  }

  .Exhibitions {
    h1 {
        font-size: 40px;
    }
}
.products-section {
  padding: 2rem 1rem;
  h2 {
    font-size: 30px;
  }

}

.Explore {
  padding: 30px 10px;
h2 {
  font-size: 30px;
}
}

.gallery {
  padding: 30px 10px;
  h2 {
      font-size: 30px;
  
  }
}

.footer {
  padding: 30px 10px;
}

.about-banner {
  background-image: url(../img/about.jpg);
  height: 50vh;
    h2 {
        z-index: 999;
        color: black;
        text-transform: uppercase;
        font-size: 35px;
        text-align: center;
        position: absolute;
        width: 350px;
        left: calc(50% - 175px);
        top: calc(50% - 52px);
    }
}

.vision-section {
  h2 {
      font-size: 30px;

  }
}
.mission-section {
  padding: 30px 0;
  h2 {
      font-size: 30px;
      margin-bottom: 15px;
  }
}
.why-choose {
  padding: 30px 0;
}

.delem {
  ul {
      margin-top: 20px;
      margin-left: 20px;
  }
  img{
    margin: 15px 0;
  }
}
.Electric {
  padding: 20px 0;
  ul {
      margin-top: 20px;
      margin-left: 20px;
  }
  img{
    margin: 15px 0;
  }
}



}

@media (max-width: 1024px) {
  header {
    display: none;
  }

  /* toggle start  */
  .side-bar .close-btn {
    font-size: 20px;
    padding: 5px;
    border: 1px solid gray;
    width: 30px;
    margin-left: 10px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold
  }

  .side-bar {
    background: white;
    backdrop-filter: blur(15px);
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -350px;
    overflow-y: auto;
    transition: 0.6s ease;
    transition-property: right;
    z-index: 999999;
  }

  .toggle-btn {
    display: block;
    cursor: pointer;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #e7e7e7;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .toggle-btn .logo {
    margin-left: 3px;

    img {
      width: 189px;
      height: 65px;
      }
  }

  .toggel-btn-pad {
    border: 1px solid gray;
    padding: 3px 6px;
    text-align: center;
    margin-right: 20px;
  }

  .side-bar {
    display: block;
  }

  .side-bar .menu .item .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: static;
    display: none;
    padding: 0px;
    padding-left: 25px;
  }

  .side-bar .menu .item .sub-menu ul {
    background-color: transparent;
    margin: 0px;
  }

  .drop-1 ul li {
    width: 100%;
    padding: 0px;
  }

  .side-bar .menu .item .sub-menu ul a {
    padding: 0px 15px;
  }

  .side-bar .menu .item a {
    color: black;
  }

  /*  */
  .side-bar .menu .item {
    position: relative;
  }

  .side-bar .menu .item i {
    position: absolute;
    right: 0;
    top: 13px;
    transition: 0.3s ease;
  }

  .side-bar .menu .item .drop-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    position: static;
    display: none;
    padding: 0px;
    padding-left: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .side-bar .menu .item .drop-menu ul {
    background-color: transparent;
    margin: 0px;


    li {
      width: 100%;
      padding: 0px;
    }
  }

  /* end */


  .footer {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0px !important;
        max-width: 1200px;
        margin: auto;
  }
}
.footer {
  .footer-col {
     width: 50% !important;
  }
}


.about {
  img {
      height: 400px;
      object-fit: cover;

  }
}
.Electric {
  ul {
      margin-top: 20px;
      margin-left: 20px;
  }
}
.delem {
  ul {
      margin-top: 20px;
      margin-left: 20px;
  }
}

}