.footer {
    background-color: #0176C0;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  
  .curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  .footer-section {
    margin-bottom: 20px;
    min-width: 200px;
    flex: 1 1 200px;
  }
  
  .logo-section {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .company-logo {
    max-width: 300px;
    height: auto;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05); /* Adds a subtle hover effect */
}
  
  .footer-section h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #172869;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #1BB6AF;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
    background-color:  #0176C0;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .bottom-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .bottom-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
  }
  
  .bottom-nav a:hover {
    color:  #0176C0;
  }
  
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
      margin-bottom: 30px;
    }
  
    .social-icons {
      margin-top: 20px;
    }
  
    .bottom-nav {
      flex-direction: column;
      align-items: center;
    }
  }
