/* #portfolio .work-box {
  overflow: hidden;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

#portfolio .work-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#portfolio .work-img img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
  border-radius: 8px;
}

#portfolio .work-box:hover .work-img img {
  transform: scale(1.1);
}

#portfolio .work-overlay {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  bottom: -20px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 8px;
  left: 0;
}

#portfolio .work-box:hover .work-overlay {
  opacity: 1;
  bottom: 0;
}

#portfolio .btn {
  margin-top: 5px;
  transition: background-color 0.3s ease-in-out;
}

#portfolio .btn-primary {
  background-color: #516cf0;
  border: none;
}

#portfolio .btn-secondary {
  background-color: #6c757d;
}

#portfolio .btn:hover {
  background-color: #3541b7;
}


#portfolio p {
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
} */

body {
  box-sizing: border-box;
  background-color: #050816;
  line-height: 30px;
  color: #fff;
  font-family:  "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#portfolio .work-box {
  overflow: hidden;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

#portfolio .work-img img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
  border-radius: 8px;
}

#portfolio .work-box:hover .work-img img {
  transform: scale(1.1);
}

#portfolio .work-overlay {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  bottom: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border-radius: 8px;
  left: 0;
  right: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  visibility: hidden; /* Hide by default */
}

#portfolio .work-box:hover .work-overlay {
  visibility: visible; /* Show on hover */
}

#portfolio .work-overlay p {
  margin: 0;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  align-items: center;
  padding-left: 30px;
  visibility: hidden; /* Hide by default */
  opacity: 0; /* Hide by default */
  transition: visibility 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

#portfolio .work-box:hover .work-overlay p {
  visibility: visible; /* Show on hover */
  opacity: 1; /* Show on hover */
}

#portfolio .work-overlay .btn-icon {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  margin: 0 5px;
  transition: color 0.3s ease-in-out;
  visibility: visible; /* Ensure icons are always visible */
}

#portfolio .work-overlay .btn-icon:hover {
  color: #ccc;
}

.about-me-container h2 {
  font-size: 2rem;
  color: #333;
}

.about-me-container h4 {
  font-size: 1.5rem;
  color: #555;
}

.about-me-container p {
  line-height: 1.6;
  color: white;
  font-size: 16px;
}

.about-me-container .about-social {
  padding: 0; /* Remove padding if any */
}

.about-me-container .about-social .list-inline-item {
  margin: 0 10px; /* Add spacing between social icons */
}

.about-me-container .about-social i {
  font-size: 1.5rem; /* Adjust icon size */
  color: #333; /* Match icon color to theme */
  transition: color 0.3s; /* Smooth color transition */
}

.about-me-container .about-social a:hover i {
  color: #007bff; /* Change icon color on hover */
}

.mt-4 {
  margin-top: 1.5rem; /* Adjust spacing as needed */
}

/* Ensure this CSS is included in your stylesheet */
.work-item {
  margin-bottom: 30px; /* Adds space below each project item */
}

@media (min-width: 992px) {
  .work-item {
    margin-bottom: 30px; /* Space between rows on large screens */
  }
}

@media (max-width: 991px) {
  .work-item {
    margin-bottom: 40px; 
  }
}

.profileimg-thumbnail {
  padding: 0; /* Remove extra padding */
  background-color: #fff; /* Add a white background for a clean look */
  border: 2px solid #e0e0e0; /* Soft border color */
  border-radius: 50%; /* Make the image circular */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); /* Add a soft shadow for depth */
  max-width: 480px; /* Slightly larger size */
  height: 480px; /* Ensure the height matches the width for a circular image */
  object-fit: cover; /* Ensure the image fits nicely within the container */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
}

.profileimg-thumbnail:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhance shadow on hover */
}
#services, #client{
   background-color: #050816;
    line-height: 30px;
}
.bgblueshPurple{
   background-color: #050816;
    line-height: 30px;
}