/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #212e3b, #000000); /* Blue gradient background */
    color: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  
  /* Container for all projects */
  .container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
  }
  
  /* Project Section Styling */
  .project {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: #002e62;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .project:hover {
    box-shadow: 0px 10px 30px rgba(100, 255, 218, 0.4);
  }
  
  /* Project Thumbnail Styling */
  .project-thumbnail {
    flex: 1;
    margin-right: 20px;
  }
  
  .project-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Project Details */
  .project-details {
    flex: 2;
    text-align: left;
  }
  
  /* Project Title and Description */
  h2 {
    color: #64ffda;
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .description {
    font-size: 1em;
    color: #ccd6f6;
    margin-bottom: 10px;
  }
  
  .organization {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  /* Video Container Styling */
  .video-container {
    position: relative;
    padding-top: 56.25%; /* Aspect ratio 16:9 */
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
  }
  
  .project-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .project {
      flex-direction: column;
    }
  
    .project-thumbnail {
      margin-right: 0;
      margin-bottom: 20px;
    }
  
    h2 {
      font-size: 1.2em;
    }
  }

  /* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #222;
  color: #bbb;
  border-radius: 10px;
}


   /* Home Button Styling */
.home-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e90ff, #483d8b);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.home-button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #64ffda, #1e90ff);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.home-button:active {
  transform: scale(0.95);
}

/* Button Visibility Animation (Optional) */
.home-button.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(30, 144, 255, 0.9));
  color: #fff;
  overflow-x: hidden;
}

/* Background Animation Placeholder */
.background-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.1), rgba(72, 61, 139, 0.1));
  animation: moveBackground 10s linear infinite;
  z-index: -1;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Freelance Page Container */
.freelance-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* Header Styling */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #5cf7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
  color: #cfcfcf;
}

/* Clients Section */
.clients {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Space between client sections */
}

/* Client Container */
.client-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  padding: 20px;
}

.client-container:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

/* Client Image */
.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  border: 3px solid #fff;
}

/* Client Info */
.client-info {
  flex-grow: 1;
}

.client-name {
  font-size: 1.8em;
  margin: 0 0 10px;
  color: #001137;
  transition: text-shadow 0.3s ease;
}

.client-description {
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
}

.client-info:hover .client-name {
  text-shadow: 0 0 10px rgba(100, 255, 218, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .client-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client-image {
    margin-bottom: 10px;
  }

  .client-name {
    font-size: 1.5em;
  }
}

/* Home Button Styling */
.home-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e90ff, #483d8b);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.home-button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #64ffda, #1e90ff);
  box-shadow: 0 8px 20px rgba(30, 144, 255, 0.6);
}

.home-button:active {
  transform: scale(0.95);
}

/* Button Visibility Animation (Optional) */
.home-button.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.social-btn {
  background-color: #0077b5;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.social-btn:hover {
  background-color: #005f87;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #222;
  color: #bbb;
  border-radius: 10px;
}


  