   /* footer start */


    .footer-wave {
      margin-bottom: -1px;
    }

    footer {
       background: #003D32;
      color: #fff;
      padding: 60px 0 20px;
      position: relative;
    }

    footer h5 {
      border-bottom: 2px solid #c8a971;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 15px;
    }

    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    footer a:hover {
      color: #c8a971;
      padding-left: 5px;
    }

    .footer-logo {
      width: 90px;
      margin-bottom: 15px;
    }

    .social-icon a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background-color: #c8a971;
      color: #003D32;
      border-radius: 50%;
      margin-right: 10px;
      transition: 0.3s;
    }

    .social-icon a:hover {
      background-color: #fff;
      color: #003D32;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px dashed #c8a971;
      font-size: 14px;
    }

    @media (max-width: 576px) {
      footer {
        text-align: center;
      }

      .social-icons {
        justify-content: center;
      }
    }

