
      header .logo {
        width:100px;
        height:auto;
      }
      .navbar {
        /* background-color: #f8f9fa !important; */
        background-color:#fdead9;
      }
        .navbar .nav-link,
        .navbar .navbar-brand {
        color: #00264d !important;
        }
        .navbar .nav-link:hover {
        color: #0d6efd !important;
        }

        header section  {
        background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6));
        color: #00264d;
        padding: 120px 0;
        }
        .btn-exploreTreatments {
          background-color:#76b5aa;
          color:#ffffff;
        }
        .treatment-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
        .treatment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            }
        .treatment-img img {
          width:100px;
          height:auto;
        }
    .how-card {
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      position:relative;
      margin:10px;
      padding:15px;
      border-radius:10px;
    }
    .how-card:hover {
      /* transform: translateY(10px); */
      transform:scale(1.2, 1.2);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      background-color:#ffffff;
    }
    .how-step {
      display:inline-block;
      padding:10px;
      width:75px;
      height:75px;
      background-color:#76b5aa;
      border-radius:50%;
      color:#ffffff;
      font-size:2rem;
      
      
      transition: transform 0.5s ease, color 0.5s ease;
    }
    .how-card:hover .how-step {
      transform: rotate(30deg);
    }
    .how-card h4 {
      transition:  color 0.5s ease, font-weight 0.5s ease;
    }
    .how-card:hover h4 {
      font-weight: bold;
      color:#fdead9;
    }
    


    footer {
      padding:25px;
      background: #f8f9fa;
      color:#000000;
      font-size:13px;
    }
    footer .logo {
      width:150px;
      height:auto;
    }
    footer a {
      color:#000000;
      text-decoration:none;
    }
    .footer-info {
      font-weight:500;
    }
    .footer-social {
      text-align:center;
    }
    .footer-copyright {
      margin:25px;
      text-align:center;
    }
    @media (max-width: 575.98px) {
      .footer-logo {
       text-align:center; 
      }
      .footer-info {
        padding:10px;
      }
      .footer-social {
        padding:10px;
      }
    }