/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-image: repeating-linear-gradient(135deg, rgba(189,189,189,0.1) 0px, rgba(189,189,189,0.1) 2px,transparent 2px, transparent 4px),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}

p, a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: 'poppins', sans-serif;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollToTop-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  display: none;
}

.scrollToTop-btn i {
  font-size: 20px;
}

header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.nav-bar .navigation {
  display: flex;
  align-items: center;
}

.nav-bar .nav-items {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-bar .nav-items a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-bar .nav-items .active {
  color: #0b2847;
}
.homechow {
  position: relative;
  height: 40vh;
  width: 100%;
  background: url('images/chowshackbend.png') no-repeat center center/cover;
}

.homechow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.666);
}

.icondescription {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  background: #000000;
}

.icondescription a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.icondescription p {
  margin: 5px 0;
  color: WHITE;
}

.icondescription span {
  font-weight: bold;
  color: #85e4c4;;
}

.mobile-frame {
  width: 340px;
  height: 100vh;
  border: 14px solid black;
  border-radius: 36px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;

}

.mobile-frame img {
  width: 100%;
  height: 100%;
  border-radius: 20px;

}

/* Section Styles */
.section {
  padding: 40px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;

}

.section-content h2 {
  margin-bottom: 20px;
  color: #0d2744;
}

.section-content p, .section-content ul {
  text-align: justify;
}

.section-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.section-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}

.section-content .imgg2 {
  display: block;
  max-width: 100%;
  height: 90vh;
  margin: 20px auto;
}

/* Footer Styles */
footer {
  background: #f1f1f1;
  padding: 20px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-bar .nav-items {
      display: none;
  }

  .nav-bar .nav-menu-btn {
      display: block;
      cursor: pointer;
  }

  .nav-bar .nav-close-btn {
      display: block;
      cursor: pointer;
  }

  .section-content video{
    width: 100%;
  }
  .icondescription {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #000000;
    
  }

  .icondescription p {
font-size: 10px;
  }


  .mobile-frame {
    width: 280px;
    height: 77vh;
    border: 14px solid black;
    border-radius: 36px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    position: relative;
   
  }

}
