:root {
  --base: #000000;
  --dark-grey: #3f3f3f;
  --white: #ffffff;
  --red: #da2b26;
  --blue: #1a3685;
  --font-primary: "Montserrat", sans-serif;
}

body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--dark-grey);
}

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

/* About Us Section */
.about-us {
  background: linear-gradient(
      135deg,
      rgb(255, 255, 255),
      rgb(235, 235, 235),
      rgba(203, 204, 250, 0.384),
      rgba(13, 16, 163, 0.466)
    ),
    url("/images/e-com-img.png") no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  color: var(--base);
}

.about-us h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 20px;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Our Industries Section */
.our-industries {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--white);
}

.our-industries h2 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 40px;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.project {
  background-color: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.project:hover {
  transform: translateY(-5px);
}

.project img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.5rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us h2,
  .our-industries h2 {
    font-size: 2rem;
  }

  .about-us p {
    font-size: 1rem;
  }

  .project-info h3 {
    font-size: 1.3rem;
  }

  .project-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-us,
  .our-industries {
    padding: 40px 15px;
  }

  .about-us h2,
  .our-industries h2 {
    font-size: 1.8rem;
  }

  .about-us p {
    font-size: 0.95rem;
  }
}
