body {
  font-family: Arial, sans-serif;
}
body header img{
  width: 100%;
  height: 200px;
  border-radius: 0px 30%;
  border: 4px solid purple;
}
h1{
  text-align: center;
  color:#da3487; 
  margin-top: 5px;
  
  /* text-shadow: 2px 2px 4px purple; */
  font-weight: bold;
  font-family: cursive;
  background-color: lightpink;
  border-radius: 0px 40%;
  border: 2px solid purple;

}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;

}

.service-card {
  width: 250px;
  background-color:lightpink;
  border: 2px solid purple; 
  border-radius: 5px;
  padding: 8px;
  margin: 10px;
  
  

}
.service-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%; 
}


.service-card h2 {
  font-size: 25px;
  margin-bottom: 10px;
  font-family: cursive;
  text-align: center;
  color: #da3487;
  text-shadow: 2px 2px 4px rgba(128,0,128,0.6);
  
}


.service-card p{
  position: relative; 
  text-align: center;
  top: -10px;
  background-color: palevioletred; 
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 12px;
}
.service-card button{
  cursor: pointer;
  color: beige;
  padding: 10px;
  background-color: #ff1493;
  border: 20px;
  border-radius: 20px;
}

footer {
   
  background: linear-gradient(-35deg, rgb(248, 4, 228) 45%, white);
  padding: 60px; 
  border-radius: 0px 40%;
  position: sticky;
}

.footer-logo img {
  width: 100px; 
  display: block;
  margin:  -40px auto 0;
  border-radius: 50%;
}   

.footer-text {
  font-size: 30px;
  font-family: cursive;
  text-align: center; 
  display: flex;
  justify-content: center;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icons a {
  display: inline-block;
  padding: 5px;
}

.icons a i {
  font-size: 24px; 
  color: black; 
  border-radius: 50%; 
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px; 
  margin: 5px;
}

.footer-col {
  width: calc(100% / 3); 
  padding: 0 15px;
  margin: 0 20px 0 0;
  margin-top: -15%;
  float: left; 
  box-sizing: border-box; 
}

.footer-col h4 {
  font-size: 18px;
  color: black;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  font-style: italic;
   font-family: 'Times New Roman', Times, serif; 
}

.footer-col h4::before {
  content: '';
  position: absolute;
   left: 10%; 
  bottom: -10px;
  background-color: white;
  height: 2px;
  box-sizing: border-box;
  width: 70px;
  transform: translateX(-50%);
  text-align: center;    
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 15px;
  color: black;
  text-decoration: none;
  text-align: center;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: black;
  padding-left: 10px;
  background-color: pink;
  border-radius: 20px;
}

.copyrights{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-style: italic;
  font-weight: bold;
  }
  .copyrights h2 {
      margin-top: -5px; 
      
} 
  .copyrights p {
    margin-top: -5px; 
} 
  @media  (max-width: 768px) {
    .footer {
        padding: 40px;
    }

    .footer-text {
        font-size: 24px;
    }

    .icons a i {
        font-size: 20px;
        padding: 8px;
    }

    .footer-col {
        width: 100%;
        margin: 0;
       
    }

    .footer-col h4::before {
        width: 50px;
    }

    .footer-col ul a {
        font-size: 14px;
    }
    .copyrights {
        font-size: 10px; 
    }
}





