body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background-color: #2e2d2d;
}

.hero {
  background: linear-gradient(135deg, #4321a1);
  color: rgb(235, 229, 229);
  padding: 100px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 10px;
}
.hero .btn:hover {
  transform: scale(1.1);
  transition: .2s;
}
#about {
  background: linear-gradient(135deg, #feffff);
  color: rgb(0, 0, 0);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
img {
  height: 310px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#about img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin: auto;
}
.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #fff6f6;
  position: relative;
}
.inner-section-title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #080808;
  position: relative;
}
button {
  border-radius: 3px;
}
button img {
  height: 20px;
  width: 20px;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #7fabda;
  margin: 10px auto 0;
}
#skills {
  text-align: center;
}
#skills div {
  display: inline-block;
  margin: 10px;
}
#skills div div div{
  background-color: #ffffff;
  color: #020202;
}
#skills div div:hover{
  transform: scale(1.05);
  transition: .3s;
}
.card {
  background-color: rgb(133, 201, 228);
  max-width: 416px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#contact {
  border-radius: 8px;
  background-color:  #ffffff;
  padding: 10px;
  margin-bottom: 20px;
}
#contact input, #contact textarea {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #000000;
}
form .form-label {
  font-weight: 500;
  color: #000000;
}
form .btn-primary {
  background-color: #2071c7;
  border-color: #007bff;
  font-weight: bold;
  padding: 10px 20px;
}

form .btn-primary:hover {
  background-color: #0056b3;
  border-color: #004a9f;
   transform: scale(1.05);
  transition: .3s;
}

footer {
  background-color: #000000;
  color: white;
  padding: 40px 0;
}
footer img {
  height: 30px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  #projects {
    width: 100%;
  }
  .card img {
    height: 300px;
  }
  .card-body button {
    height: 40px;
  }
  .card-body button img {
    object-fit: contain;
    height: 20px;
    width: 20px;
  }
  #skills div {
    display: block;
  }
  #contact {
    margin: 20px;
  }
}

#about {
  background-color: #ffffff;
  padding: 60px 20px;
}
footer a:hover {
  text-decoration: underline;
}
