* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}
body {
  position: relative;
  margin: 0;
  color: white;
}

.background {
  position: relative;
  background-image: url("https://i.pinimg.com/564x/4d/42/22/4d422261cb1ac3f52eea4c6d3ea9d0d6.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;

  z-index: 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.66);
  z-index: 1;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45px;
  padding-left: 8%;
  padding-right: 8%;
  position: relative;
  z-index: 2;
}
.logo {
  color: #e6c4e6;
  font-size: 35px;
  letter-spacing: 1px;
  cursor: pointer;
}

.nav-logo {
  height: 65%;
  font-family: ui-sans-serif;
  font-weight: bold;
  font-size: 38px;
  color: #e6c4e6;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
nav ul li {
  list-style-type: none;
  display: inline-block;
  padding: 10px 25px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 20px;
}
nav ul li a:hover {
  color: #b175b1;
  transition: 0.4s;
}
.content {
  position: absolute;
  top: 20%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
}

.tagline {
  color: #b175b1;
  font-size: 55px;
}
.subheading {
  color: white;
  font-size: 40px;
  font-weight: bolder;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #7a027a;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bolder;
  border-radius: 30px;
  border: 3px solid #7a027a;
  transition: background-color 0.5s ease;
  cursor: pointer;
}
.cta-button:hover {
  border-color: #b175b1;
}
h1 {
  color: white;
  margin: 20px 0px 20px;
  font-size: 55px;
}
h3 {
  color: #7a027a;
  font-size: 22px;
  margin-bottom: 50px;
}
h4 {
  color: #7a027a;
  letter-spacing: 2px;
  font-size: 20px;
}
.newsletter form {
  width: 380px;
  max-width: 100%;
  position: relative;
}
.newsletter form input:first-child {
  display: inline-block;
  width: 100%;
  padding: 14px 130px 14px 15px;
  border: 2px solid #7a027a;
  outline: none;
  border-radius: 30px;
}
.newsletter form input:last-child {
  position: absolute;
  display: inline-block;
  outline: none;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  background-color: #7a027a;
  color: white;
  box-shadow: 0px 0px 5px #000, 0px 0px 15px #7a027a;
  top: 6px;
  right: 6px;
}
.about {
  padding: 100px 0px;
  background-color: #eae4eb;
}
.about img {
  height: auto;
  width: 100%;
  max-width: 430px;
}
.about-text {
  width: 100%;
  max-width: 550px;
  margin-left: 20px;
}
.main {
  max-width: 1130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-text h2,
.about-text h5,
.about-text p {
  margin-bottom: 20px;
}
.about-text h2 {
  color: #361e43;
  font-size: 36px;
}
.about-text h5 {
  color: #121115;
  font-size: 18px;
}
.about-text p {
  color: #5a226e;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.sec-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #121115;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bolder;
  border-radius: 30px;
  border: 3px solid #121115;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.sec-button:hover {
  border-color: #b175b1;
}

.service {
  background: #eae4eb;
  width: 100%;
  padding: 100px 0px;
}

.title h2 {
  color: #361e43;
  font-size: 75px;
  /* width: 1130px; */
  margin: 30px auto;
  text-align: center;
}
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.card {
  height: 365px;
  width: 335px;
  padding: 20px 35px;
  background: #b175b1;
  border-radius: 20px;
  margin: 15px;
  font-weight: bolder;
  font-size: 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.card i {
  font-size: 50px;
  display: block;
  text-align: center;
  margin: 25px 0px;
  color: white;
}
h5 {
  color: #121115;
  font-size: 23px;
  margin-bottom: 15px;
}
.pra p {
  color: #7a027a;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 25px;
}

.contact-me {
  width: 100%;
  height: 290px;
  background: #eae4eb;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.contact-me p {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
}
.contact-me .button-two {
  background-color: #7a027a;
  color: white;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 9px 22px;
  border-radius: 30px;
  transition: 0.4s;
}
.contact-me .button-two:hover {
  background-color: transparent;
  border: 2px solid white;
}
footer {
  position: relative;
  width: 100%;
  height: 400px;
  background: #eae4eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer p:nth-child(2) {
  color: purple;
  max-width: 500px;
  text-align: center;
  line-height: 28px;
  font-size: 16px;
  font-weight: bold;
}
.icons i {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  padding-top: 10px;
  margin: 30px 5px;
  background-color: purple;
  color: black;

  border: 1px solid;
  transition: 0.4s;
}
.icons i:hover {
  color: white;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  padding-top: 10px;
  margin: 30px 5px;
  cursor: pointer;
}
.footnote {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #121115;
}
footer hr {
  width: 80%;
  margin-top: 20px;
}
footer h5 {
  color: purple;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}
#contact {
  color: purple;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 952px) {
  .logo {
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a {
    font-size: 16px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 2s ease-in-out forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 2s ease-in-out forwards;
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-left {
  animation: slideLeft 2s ease-in-out forwards;
}
@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-right {
  animation: slideRight 2s ease-in-out forwards;
}

@media screen and (max-width: 858px) {
  .content {
    position: absolute;
    top: 45%;
    left: 5%;
  }
  .content h1 {
    font-size: 30px;
    line-height: 50px;
  }
  .tagline {
    font-size: 35px;
    line-height: 45px;
  }
  .about {
    text-align: center;
  }
  .about img {
    margin: 20px 0px 20px;
  }
  .about-text {
    margin-left: 0;
  }
  .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 300px;
    height: auto;
  }
}
