/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {


  .nav-strip{
    background-color: white;
    top: 0;
    height: 70px;
    width: 100%;
    position: fixed;
    z-index: 1000;
  }
  .nav-logo{
    display: block; 
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    padding: 5%;
    font-size: 150%;
    background: white;
    border: none;
  
    cursor: pointer;
    text-align: center;
    z-index: 1000;

  }
 #contact {
   display: flex;
   flex-direction: column;
   background: white;
 }
 
  
  .particulars {
    cursor: pointer;
    background-color: #f1f1f1;
    padding: 10px;
    color: black;
    text-align: center;
    width: 100%;
   }

 

  .menu-toggle {
    display: block; 
    position: fixed;
    top: 0;
    right: 0;
    margin: auto;
    padding: 15px;
    background: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    text-align: center;
    z-index: 1000;
}

.nav-container {
    /* Default mobile state: HIDDEN */
    display: none; 
    position: fixed;
    top: 60px; /* Adjust this to sit below your navigation bar */
    right: 0;
    background-color: white;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    
}

/* JavaScript will add the 'is-open' class to this container when clicked */
 .menu-open {
    display: block;
}

.nav-pills {
    list-style-type: none;
    flex-direction: column; /* Mobile: Stacks links vertically */
    width: 100%;
    padding: 10px;
}

.nav-item {
  
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.nav-link{
  text-decoration: none;
}

.nav-link {
    display: block; /* Make the whole link area clickable on mobile */
    padding: 15px 20px;
    width: 100%;
    color: black;
}
  
.nav-item > .active {
  color: chartreuse;
}


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

  .nav-strip{
    display: flex;
    align-items: center; /* Vertically centers the child items */
    justify-content: center;
    background-color: white;
    top: 0;
    height: 88px;
    width: 30%;
    position: fixed;
    z-index: 1000;
  }
  .nav-logo{
    display: block; 
    position: relative;
    color: black;
    top: 0;
    left: 0;
    height: auto;
    margin: auto;
    padding: 15px;
    background: white;
    border: none;
    font-size: 15px;
    cursor:default;
    text-align: center;
    z-index: 1000;

  }
  .menu-toggle {
    display: none; 
  }


  #contact {
    display: block;
    text-align: right;
    margin-top: 10px;
  
   
  }
  
   
   .particulars {
     cursor: pointer;
     background-color: #ffffff;
     padding: 20px;
     color: black;
     text-align: center;
     width: 100%;
    }

  
 
  .nav-container {
    /* Default mobile state: HIDDEN */
    display: block; 
    position: fixed;
    top: 0px; /* Adjust this to sit below your navigation bar */
    right: 0;
    background-color: white;
    color: black;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 500;
  }
 

  .nav-pills {
    /* Default mobile state: HIDDEN */
    display: flex; 
    justify-content: flex-end;
    list-style-type: none;
    margin-right: 20px;
}

.nav-item{
 
  background-color: inherit;
  padding: 5px;
  text-decoration: none;
  text-align: center;
 
  color: black;
}

.nav-link{
  text-decoration: none;
  color: black;
  
}

.nav-item > .active {
  color: chartreuse;
}

}


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
 
 
 
 
 
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

  .nav-strip{
    height:81px;
  }
  .menu-toggle {
    display: none; 
  }

 #navContainer {

 
  padding: 10px 20px;
}

#contact {

 justify-items: center;
 align-items: center;
 margin-top: 5px;

}

.particulars {

  font-size: smaller;
  background-color: none;
  padding: 5px;
  
 
 
 }

 .nav-pills {
    margin: 0;
    padding: 0%;
    gap:1%;
}

.nav{
  padding: 5px;
}

}
 


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}