  .btn-1,
  .btn-2 {
    /* width: 300px; */
    /* height: 200px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 1rem;
    margin-bottom: 1rem;
    height: 1.3rem;
    font-size: 12px;
    font-weight: 700;
    font: 500 1rem "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  /* Created by http://grohit.com/  */
  footer a,
  .btn-1 a,
  .btn-2 a {
    text-decoration: none;
    border: 0.5px solid #a407e6;
    padding: 10px;
    color: #a407e6;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
  }
  
  span {
    position: relative;
    /* z-index coz when we put bg to before and after this span text will not be visible */
    z-index: 3;
  }
  
  /* Button 1 styles */
  
  .btn-1 a::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -2px;
    width: calc(100% + 6px);
    /*100% plus double the times left values*/
    height: calc(100% - 10px);
    background-color: #a407e6;
    transition: all 0.5s ease-in-out;
    transform: scaleY(1);
  }
  
  .btn-1 a:hover::before,
  .btn-2 a:hover::before {
    transform: scaleY(0);
  }
  
  .btn-1 a::after {
    content: "";
    position: absolute;
    left: 5px;
    top: -5px;
    width: calc(100% - 10px);
    /*100% plus double the times left values*/
    height: calc(100% + 10px);
    background-color: #ffffff;
    transition: all 1.5s ease-in-out;
    transform: scaleX(1);
  }
  /* Created by http://grohit.com/  */
  
  .btn-1 a:hover::after,
  .btn-2 a:hover::after {
    transform: scaleX(0);
  }
  
  /* Button 2 styles */
  
  .btn-2 a {
    color: #ffffff;
    transition: all 0.5s ease-in-out;
  }
  
  .btn-2 a:hover {
    color: #ffffff;
    transition: all 0.5s ease-in-out;
  }
  
  .btn-2 a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #a407e6;
    transition: all 0.5s ease-in-out;
    transform: scaleY(1);
  }
  
  .btn-2 a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: all 0.5s ease-in-out;
    transform: scaleX(1);
  }


  .PharagraphAboutUs{
    font-style: normal;
  }
 /* CONTACT SECTION STYLING */
 #contact .section-heading {
    color: #333; /* dark text to show on bg-light */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #a407e6;
  padding: 2rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.Phone-Contact{
  color: #ffffff;
}
.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(236, 230, 230, 0.945);
}

.contact-item i {
  color: #007bff;
  margin-bottom: 0.5rem;
}

.copy-msg {
  display: none;
  margin-top: 1rem;
  color: #28a745;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
}

