/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background-color: #0d1224;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: gold;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: gold;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* BANNER IMAGE */
.image-banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.image-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  padding: 20px 30px;
  border-radius: 10px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: gold;
}

/* SECTION STYLING */
.section {
  background: white;
  padding: 40px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.section h2 {
  color: #0d1224;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-left: 4px solid gold;
  padding-left: 12px;
}

.section ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  gap: 20px;
}

/* SERVICE LIST WITH IMAGES */
.service-list-with-images li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.service-list-with-images img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.service-list-with-images span {
  font-weight: 600;
}

/* TEAM MEMBERS */
.team-member {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid gold;
}

/* CLIENTS GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.client-card {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* TABLE */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th, .table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.table th {
  background: #f0f0f0;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .navbar nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #0d1224;
    padding: 10px 0;
  }

  .navbar nav a {
    margin: 10px;
    display: block;
  }

  .navbar nav.active {
    display: flex;
  }
}

