/* From Uiverse.io by PauloRFJ */ 
.card {
    width: fit-content;
    height: fit-content;
    background-color: rgb(237, 232, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
  }
  
  /* for all social containers*/
  .socialContainer {
    width: 40px;
    height: 50px;
    background-color: rgb(107, 103, 103);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: 1.2s;
    border-radius: 15px 0 15px 0px;
  }
  /* instagram*/
  .containerOne:hover {
    background-color: #d62976;
    transition-duration: 1.2s;
  }
  /* twitter*/
  .containerTwo:hover {
    background-color: #00acee;
    transition-duration: 1.2s;
  }
  /* linkdin*/
  .containerThree:hover {
    background-color: #0072b1;
    transition-duration: 1.2s;
  }
  /* Whatsapp*/
  .containerFour:hover {
    background-color: #f90101;
    transition-duration: 1.2s;
  }
  
  .socialContainer:active {
    transform: scale(0.9);
    transition-duration: 1.2s;
  }
  
  .socialSvg {
    width: 17px;
  }
  
  .socialSvg path {
    fill: rgb(255, 255, 255);
  }
  
  .socialContainer:hover .socialSvg {
    animation: slide-in-top 1.2s both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
.header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.subtext {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}
.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.contact-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}
.contact-box img {
    width: 40px;
    margin-bottom: 10px;
}
.contact-box h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.contact-box p {
    color: #555;
    font-size: 16px;
}
.contact-box a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5c35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.contact-box a:hover {
    background-color: #e04b2b;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adjust the spacing between icons */
  flex-wrap: wrap;
  width: 100%;
  padding: 20px;
  
}
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #5a5a5a;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom p {
  margin: 0.5rem 0;
}


