/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  line-height: 1.6;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0;
}

header .logo {
  max-height: 120px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1em;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6600;
}

/* Responsive menu */
nav .menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 1em;
  }
  nav ul.active {
    display: flex;
  }
  nav .menu-toggle {
    display: block;
  }
}

.hero {
  position: relative;
  text-align: center;
  height: 394px;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

section {
  padding: 2em 0;
}

.about-section,
.industries-section,
.why-choose-section,
.cta-section,
.content {
  background: #ffffff;
  margin-bottom: 1em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
}

.card img {
  max-width: 100%;
  max-height: 394px;
  border-radius: 5px;
}

.card p {
  margin-top: 0.5em;
}

ul {
  padding-left: 20px;
}

.btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e65c00;
}

footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

footer a {
  color: #ff6600;
}
