/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */
header {
  background: #1a1a1a;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Back Button */
.back-button {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.back-button i {
  font-size: 1.5rem;
  color: #f4af1b;
}

.back-button:hover {
  color: #f4af1b;
  transition: color 0.3s ease-in-out;
}

/* Main Content */
#project-details {
  margin-top: 50px;
  text-align: center;
  animation: fade-in 1s ease-in-out;
}

#project-title {
  font-size: 2.5rem;
  color: #f4af1b;
  margin-bottom: 20px;
}

/* Footer Section */
.footer {
  background: #1a1a1a;
  color: #d1d1d1;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}

.footer p {
  margin: 5px 0;
  font-size: 1rem;
}

.footer a {
  color: #f4af1b;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #project-title {
    font-size: 2rem;
  }

  .back-button {
    font-size: 1rem;
  }

  .back-button i {
    font-size: 1.2rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* Image Section */
.image-section {
  margin-top: 40px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 20px;
}

.image-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

/* Video Section */
.video-section {
  margin-top: 40px;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Content Section */
.content-section {
  margin-top: 40px;
  color: #ffffff;
}

.content-section h2 {
  font-size: 2rem;
  color: #f4af1b;
  margin-bottom: 20px;
  text-align: center;
}

.content-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #d1d1d1;
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section ul {
  list-style: disc;
  padding-left: 20px;
}

.content-section ul li {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 10px;
}

.buttons-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto; /* Center alignment */
  text-align: center;
  max-width: 800px; /* Restrict width for better layout */
  padding: 20px; /* Add some padding around the section */
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between the buttons */
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #f4af1b, #d08c00);
  border-radius: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}

.note {
  font-size: 0.9rem;
  color: #d1d1d1;
  margin-top: 10px;
  line-height: 1.5;
  max-width: 600px; /* Ensure proper alignment for smaller screens */
}

.note strong {
  color: #f4af1b;
}

