* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* ---------- Header ---------- */
header {
  background-color: #111;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6em;
  color: crimson;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
  font-size: 1em;
}

nav a:hover {
  color: crimson;
}

/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #111);
  animation: fadeIn 1.5s ease-in;
}

.hero-content h1 {
  font-size: 2.4em;
  color: crimson;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  background-color: crimson;
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: darkred;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

/* ---------- Intro Section ---------- */
.intro {
  padding: 60px 20px;
  background-color: #101010;
  text-align: center;
  animation: fadeInUp 1s ease-in;
}

.intro h2 {
  font-size: 2em;
  color: crimson;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1em;
  color: #ccc;
  line-height: 1.6;
}

/* ---------- Highlights ---------- */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #0d0d0d;
  gap: 20px;
}

.card {
  background-color: #181818;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  transition: transform 0.3s;
  text-align: center;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  color: crimson;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95em;
  color: #ccc;
}

/* ---------- Footer ---------- */
footer {
  background-color: #111;
  color: #777;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}


/* ---------- X1205 Product Feature Section ---------- */
.product-feature {
  background-color: #0a0a0a;
  padding: 60px 20px;
}

.feature-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #181818;
  padding: 30px;
  border-radius: 15px;
  width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.02);
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-card h2 {
  font-size: 1.8em;
  color: crimson;
  margin-bottom: 15px;
}

.text-card p {
  color: #ccc;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}













/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}













/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .btn {
    font-size: 0.95em;
    padding: 10px 20px;
  }

  .card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5em;
  }

  .intro h2 {
    font-size: 1.5em;
  }

  nav a {
    font-size: 0.9em;
  }
}


/* ---------- Responsive for Product Feature ---------- */
@media (max-width: 900px) {
  .feature-container {
    flex-direction: column;
  }

  .feature-card {
    width: 90%;
  }

  .text-card h2 {
    font-size: 1.5em;
    text-align: center;
  }

  .text-card p, .text-card .btn {
    text-align: center;
  }
}











/* ---------- About Us Section ---------- */
.about-section {
  padding: 60px 20px;
  background-color: #101010;
  text-align: center;
}

.about-container h1 {
  font-size: 2.5em;
  color: crimson;
  margin-bottom: 20px;
}

.about-container p {
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1em;
}

/* ---------- Mission & Vision ---------- */
.mv-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #0d0d0d;
}

.mv-card {
  background-color: #181818;
  color: #ccc;
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s;
}

.mv-card h2 {
  color: crimson;
  margin-bottom: 15px;
}

.mv-card:hover {
  transform: scale(1.05);
}

/* ---------- Company Hierarchy ---------- */
.hierarchy-section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.hierarchy-section h2 {
  font-size: 2.2em;
  color: crimson;
  margin-bottom: 40px;
}

.hierarchy-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background-color: #181818;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.team-card:hover {
  transform: scale(1.05);
}

.team-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card h3 {
  color: crimson;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 1em;
  color: #ccc;
}

/* ---------- Responsive: About Page ---------- */
@media (max-width: 768px) {
  .mv-card, .team-card {
    width: 90%;
  }

  .about-container h1 {
    font-size: 2em;
  }

  .hierarchy-section h2 {
    font-size: 1.8em;
  }
}

/* ---------- Under Construction Section ---------- */
.construction {
  background-color: #0d0d0d;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-content {
  max-width: 600px;
  animation: fadePulse 2s infinite;
}

.construction-content h1 {
  font-size: 2.2em;
  color: crimson;
  margin-bottom: 20px;
}

.construction-content p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Animation for pulsing text */
@keyframes fadePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (max-width: 768px) {
  .construction-content h1 {
    font-size: 1.8em;
  }
  .construction-content p {
    font-size: 1em;
  }
}


/* ---------- Projects Page ---------- */
.project-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.project-intro {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
}

.project-intro h1 {
  color: crimson;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.project-intro p {
  color: #ccc;
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}

.project-row {
  background-color: #0a0a0a;
  padding: 50px 20px;
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.project-row.reverse .project-card {
  flex-direction: row-reverse;
}

.project-image img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.project-info {
  flex: 1;
}

.project-info h2 {
  color: crimson;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.project-info p {
  color: #ccc;
  line-height: 1.6;
}

/* ---------- Responsive Projects ---------- */
@media (max-width: 900px) {
  .project-card {
    flex-direction: column;
    text-align: center;
  }

  .project-image img {
    width: 90%;
  }
}





/* Contact Section */
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.contact-form, .contact-info {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
}

.contact-form button {
  background: crimson;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-info p {
  margin: 10px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  color: crimson;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
