@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Edu+SA+Beginner:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playwrite+AU+SA:wght@100..400&family=Poppins:ital,wght@0,100;200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


.container_project {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  /* padding: 40px 20px; */
}

/* Heading Styling */
.project-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-left: 5px solid #b00020;
  padding-left: 10px;
}

/* Container for Project Info */
.project-container {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Image Area */
.project-image img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Project Text Details */
.project-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-details p {
  font-size: 1rem;
  text-align: justify;
  max-width: 700px;
}

/* Paragraph Styling */
p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 1000px;
}

/* Section Title */
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: #111;
  margin: 20px 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .project-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-image img {
    width: 100%;
    max-width: 100%;
  }

  .project-details {
    width: 100%;
  }
}

.features-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fafafa;
  border-left: 5px solid #b00020;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.features-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.features-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.8;
}

.features-list > li {
  margin-bottom: 20px;
}

.features-list strong {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.features-list ul {
  margin-left: 20px;
  list-style: disc;
  color: #555;
}

.features-list ul li {
  margin-bottom: 5px;
  font-size: 1rem;
}
.features-list ul li a {
  color: #b00020;
  text-decoration: none;
}