* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/***navigation***/
nav {
    display: flex;
    align-items: center;
    gap: 5px;         
    padding: 10px;
}
/***logo**/
.logo {
    width: 120px;
    height: auto;
    margin-top: 5px;
    margin-left: 5px;
}
.logo:active {
  transform: scale(0.9);
  opacity: 0.7;
}
.logo:hover {
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
/***Main navigation**/
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 1px 8px;
box-shadow: 2px;
background-image: url("images/bagpack.jpg");
}
nav .navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 10px;
    gap: 10px;
   
}
nav .navigation ul li {
    list-style: none;
    margin-right: 85px;
}

nav .navigation ul li a {
    text-decoration: none;
    color: rgb(252, 249, 249);
    font-weight: 500;
    font-size: 16px;
    transition: 0.5sec;
    letter-spacing: 0.5px;
   
}
nav .navigation ul li a:hover {
color: rgb(234, 148, 83);
}
/**dropdown menu**/
.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffa52f;
  min-width: 120px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 100;
}


.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}

/****vertical box***/
 .vertical-box {
      width: 800px;
      height: 800px;
      border: 2px solid #f4eded;
      overflow: hidden;
      border-radius: 150px;
      margin-top: 25px;
      margin-left: 25px;
    }

    .vertical-box img {
      width: 800px;
      height: 800px;
      object-fit: cover;
      display: block;
    }
  
    /* Overlay text centered on the image */
.overlay-text {
  position: absolute;
  top: 80%;
  left: 27.5%;
  transform: translate(-50%, -50%); /* centers horizontally and vertically */

  width: 120%;                 /* adjust as needed */
  max-width: 600px;           /* optional: limit width */
  text-align: center;         /* center the text inside */
  color: rgb(254, 254, 254);
  padding: 20px;

}

.overlay-text h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
}

.overlay-text p {
  margin: 0;
  font-size: 1rem;  
  line-height: 1.5;
}


/****image -scroll-box****/
.scroll-box {
  width: 29%;
  max-width: 1200px;   /* adjust box width */
  height: 250px;      /* adjust box height */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  border: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  margin-top: -35%;
  margin-left:60%;
}

.scroll-box img {
  display: inline-block;
  width: 200px;       /* adjust image size */
  height: 200px;      /* adjust image size */
  object-fit: cover;  /* keeps image neat */
  margin-right: 10px;
  border-radius: 8px;
}