*{padding: 0; margin: 0; box-sizing: border-box;}
body{
    overflow-x:hidden;
    
}
.icon-white {
    fill: white !important;
}
a:hover,
button:hover {
    /*color: blue !important;*/
    transform: scale(1.2); /* Reduced scale value */
    transition: transform 0.3s ease; /* Optional: smooth transition */
}
h1,h2,h3,h6,.font,h5{
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    /*color: inherit;*/
    text-rendering: optimizeLegibility;
}

.navbar a, .navbar .navbar-brand{
    color:black!important;
    /*text-shadow: 0 4px 12px rgb(83, 82, 82);
    background-color: transparent;*/
}

.navbar{
    background-color: white;
    color:black !important;
    /*background-color: transparent;*/
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    /*text-shadow: 0 4px 12px rgb(83, 82, 82);*/
  }

.white-logo {
    filter: brightness(0) invert(1); /* Makes image white */
}

/* Ensure initial transparent background for dropdown */
.navbar .dropdown-menu {
    background-color: rgba(255, 255, 255, 0) !important; /* Transparent */
    color: white !important;
    border: none !important;
    transition: background-color 0.3s ease;
    /*text-shadow: 0 4px 12px rgb(255, 255, 255);*/
    box-shadow: none !important; /* Remove any default shadow */
}

/* White background for dropdown when navbar is scrolled */
.navbar .dropdown-menu {
    background-color: white !important;
    color: black !important;
    /*text-shadow: none !important;  Remove text shadow */
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;  Optional: add shadow when scrolled */
}




.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #ffffff;
  }

  .service-card {
    width: 280px;
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .service-icon {
    font-size: 40px;
    color: #0072ce;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 14px;
    color: #555;
  }

  @media (max-width: 768px) {
    .service-card {
      width: 100%;
    }
  }




.button-style {
  display: inline-block; /* Ensures it behaves like a button */
  background-color: #f29400; /* Button background color */
  color: #ffffff; /* Button text color */
  /*border: 1px solid #0056b3; /* Border color */
  padding: 8px 20px; /* Add padding for a button-like look */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
}






/*values and mission index page*/


.mission-values-section {
  padding: 40px 20px;
  background-color: #f8f9fa; /* Light gray background */
}

.mission-values-section h2 {
  margin-bottom: 20px;
  font-weight: bold;
}

.mission-values-section p {
  font-size: 1.1rem;
  color: #555; /* Dark gray text for better readability */
}

.core-values-list {
  list-style-type: none; /* Remove default list styling */
  padding: 0;
  max-width: 800px; /* Center the content */
}

.core-values-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #333; /* Slightly darker text */
}

.core-values-list li strong {
  color: #007bff; /* Highlighted text in primary color */
}
