.info_section {
    background-color: #101010;
    color: #ffffff;
    padding: 25px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.info_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.social_container {
    text-align: center;
    margin-bottom: 30px;
}

.social_box a {
    margin: 0 10px;
    display: inline-block;
    font-size: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.social_box a:hover {
    transform: scale(1.1);
    color: #03b6ec;
}

.info_container {
    padding-top: 30px;
}

.info_container .row {
    display: flex;
    flex-wrap: wrap;
}

.info_container .col-md-6 {
    width: 50%;
    padding: 15px;
}

.info_container .col-lg-3 {
    width: 25%;
    padding: 15px;
}

.info_container h6 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #f0f0f0;
    position: relative;
    padding-bottom: 10px;
}

.info_container h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #03b6ec;
}

.info_container p, .info_container a {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.info_container a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.info_container a:hover {
    color: #03b6ec;
}

.quick_links {
    list-style: none;
    padding: 0;
}

.quick_links li {
    margin-bottom: 10px;
}

.quick_links li a {
    color: #cccccc;
}

.map_container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
}

.map_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.info_link-box {
    display: flex;
    flex-direction: column;
}

.info_link-box a, .contact-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.info_link-box i, .contact-group i {
    font-size: 20px;
    margin-right: 10px;
}

.contact-group div {
    display: flex;
    flex-direction: column;
    line-height: 0%;
}

.contact-group div a {
    line-height: normal;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-group div a:hover {
    color: #03b6ec;
}

.info_link-box a:hover, .contact-group:hover {
    color: #03b6ec;
}


.footer_section {
    background-color: #202020;
    padding: 15px 10px;
    text-align: center;
}

.footer_section p {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.footer_section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_section a:hover {
    color: #03b6ec;
}

/* Responsive styles */
@media (max-width: 991px) {
    .info_container .col-md-6 {
        width: 100%;
    }

    .info_container .col-lg-3 {
        width: 50%;
    }

    .footer_section {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .social_box a {
        margin: 0 5px;
    }

    .info_container .col-lg-3 {
        width: 100%;
    }

    .info_container h6 {
        text-align: center;
    }

    .quick_links li {
        text-align: center;
    }

    .info_link-box a {
        justify-content: center;
    }
}


/* Fade animaton */
/* Fade In Animations */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Animation classes */
  .fade-in-up {
    animation: fadeInUp 1s forwards;
  }
  
  .fade-in-down {
    animation: fadeInDown 2s forwards;
  }
  
  .fade-in-left {
    animation: fadeInLeft 1s forwards;
  }
  
  .fade-in-right {
    animation: fadeInRight 1s forwards;
  }
  