.logo{
    position: absolute;
    left: 3%;
}



/*.logo {*/
/*    max-height: 50px;*/
/*    padding-left: 15px;*/
/*}*/





.image-container {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    
  }
  
  .image-container img {
    width: 125px;
    height: 50px;
    margin-left: 25px;
  }
  
.image-container img:hover{
  transform: scale(1.3);
  box-shadow: 4px 4px 10px 0px gray;
  transition: all 0.3s ease;
  
}












.navbar-nav li a.active {
    
    border-bottom: 3px solid gray;
    color: #007bff; /* Change text color */
    font-weight: bold;
    background-color: #e6f0ff; /* Optional: light blue bg */
}
























#label{
  font-size: 21px;
  text-align: center;
  position: relative;
  left: 220px;
  color: #216ec1;
}

/*.address-container {*/
/*  display: flex;*/
/*  width: 550px;*/
/*  padding: 10px;*/
/*  justify-content: space-around;*/
/*}*/

/*.address-box {*/
/*  margin-left: 1px;*/
/*  width: 250px;*/
/*  font-size: 16px;*/
/*  color: #787979;*/
/*  line-height: 1.6;*/
/*}*/



/*.address-box label {*/
/*  color: #0C86DB;*/
/*  font-size: 24px;*/
/*}*/



@media (max-width: 768px) {
  .intro-message p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav li {
    float: none;
    display: inline-block;
  }
  .logo {
    max-width: 120px;
    height: auto;
  }
}
/* Optional for better spacing */
.navbar .navbar-nav > li > a {
    padding: 15px 20px;
}


/*hover*/

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



/* Center all section images and apply consistent styling */
.content-section-a img,
.content-section-b img {
    display: block;
    margin: 20px auto;
    border-radius: 15px;
    border: 3px solid #e6e6e6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

      
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.content-section-a img:hover,
.content-section-b img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}



.image-container {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    margin-top: 40px;
    
  }
  
  .image-container img {
    width: 125px;
    height: 50px;
    margin-left: 25px;
    margin-top: 10px;
  }
  
.image-container img:hover{
  transform: scale(1.3);
  box-shadow: 4px 4px 10px 0px gray;
  transition: all 0.3s ease;
  margin-top: 40px;
  
}


/*.address-box {*/
/*    padding: 15px;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 8px;*/
/*    background-color: #f9f9f9;*/
/*}*/

.address-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.address-box {
    max-width: 400px;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-size: 16px;
}

@media (max-width: 768px) {
    .address-box {
        text-align: center;
        margin-bottom: 20px;
    }

    #contact label {
        text-align: center;
        display: block;
        margin-bottom: 20px;
        font-size: 45px;
        font-weight: bold;
    }

    .email-button-wrapper {
        margin-right: 0 !important;
    }
}

