body {
    overflow-x: hidden;
}

img {
	max-width: 100%;
}

.navigation img{
    max-width: 40px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.navigation .logo{
    display: inline-block;
    font-size: 1.4em;
    vertical-align: middle;
}

.header-section .bg-dark{
    opacity: 0.5;
}
.bg-transparent {
    background-color: transparent !important;
}
.navbar-light .navbar-brand {
    color: #0f6f3b;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: #2f1959;
}

.feature-image {
    position: relative;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    border: 3px solid #fff;
}

.feature-image img{
    max-width: 200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.footer .copyright:before {
    content: "© ";
}

.icon-wrap {
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 100%;
    overflow: hidden;
}

.demo-note {
    text-align: right;
}

.demo-note small{
    top: 50%;
    position: relative;
    height: fit-content;
    display: block;
    transform: translateY(-50%);
    color: #585858;
    font-style: italic;
}

.footer,
.footer small,
.footer a {
    text-decoration: none;
    color: #929292;
}

@media screen and (max-width: 768px){
    .navigation .col-12 {
        text-align: center !important;
    }

    .navigation .demo-note {
        margin-bottom: 30px;
    }

    .header-section .w-50,
    .sub-header-section .w-50 {
	    width: 90% !important;
	}
}

.fade-in {
    opacity: 0;
    animation: fadeIn ease 2s;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }
  
  a:hover,
  button:hover,
  .feature-image:hover {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transform: scale(1.05);
  }
  
  .slide-in-left {
    transform: translateX(-100%);
    animation: slideInLeft 0.5s forwards;
    animation-delay: 0.5s;
  }
  
  .slide-in-right {
    transform: translateX(100%);
    animation: slideInRight 0.5s forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes slideInLeft {
    to { transform: translateX(0); }
  }
  
  @keyframes slideInRight {
    to { transform: translateX(0); }
  }
  
  .feature-image {
    transition: transform 0.2s ease-in-out;
  }
  
  .feature-image:hover {
    transform: scale(1.1);
  }
  
  /* ... */
  /* The rest of your existing styles */
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #007bff; /* Adjust the color as needed */
    text-decoration: none;
  }
  
  .social-links a:hover {
    color: #0056b3; /* Darker shade for hover effect */
  }
  
  .social-links i {
    margin-right: 5px;
  }
  
  .contact-us-section a {
    transition: color 0.3s ease;
  }
  
  .contact-us-section a:hover {
    color: #0056b3; /* Darker shade for hover effect */
  }
  
  .contact-us-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .contact-us-section li {
    margin-bottom: 5px; /* Spacing between social links */
  }
  
  .map-container iframe {
    border-radius: 10px; /* Rounded corners for map iframe */
  }
  