* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
        background-color: rgb(237, 207, 166);

  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  padding: 5px 30px;
  color: rgb(78, 78, 78);
  position: relative;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(7, 7, 7);
  font-size: 24px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: gray !important;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo img {
    width: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0a0a0a;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: white;
    padding: 10px;
    display: block;
  }

  .hamburger {
    display: block;
  }
}
.one{
font-size: 20px;
text-align: center;
padding-top: 20px;
}
.one p{
    text-align: center;
    padding: 30px;
    
}
/* Section 5 */
.sec5 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}

.sec5-image {
  flex: 1 1 400px;
  text-align: center;
}

.sec5-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sec5-text {
  flex: 1 1 400px;
  padding-top: 30px;
  text-align: center;
}

.sec5-text h3 {
    text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #060606;
}

.sec5-text p {
  font-size: 1.2rem;
  line-height: 2.6;
  color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sec5 {
    flex-direction: column;
    text-align: center;
  }

  .sec5-text {
    text-align: center;
  }

  .sec5-text h3 {
    font-size: 1.6rem;
  }

  .sec5-text p {
    font-size: 0.95rem;
  }
}
/* Section 2 */
.sec2 {
  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
  flex-wrap: wrap;
}
.bullet {list-style-type: none !important;
}
.sec2-image {
  flex: 1 1 400px;
  text-align: center;
}

.sec2-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sec2-text {
  /* flex: 1 1 400px; */
  text-align: center;
}

.sec2-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.sec2-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .sec2 {
    flex-direction: column;
    text-align: center;
  }

  .sec2-text h3 {
    font-size: 1.6rem;
  }

  .sec2-text p {
    font-size: 0.95rem;
  }
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 53, 53);
  height: 50px;
  color: white;
  text-align: center;
}