
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
}

header {
  background: #0b2a4a;
  color: white;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
}

.logo span {
  font-size: 14px;
  color: #d4af37;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 50px 0;
}

.hero {
  background: linear-gradient(to right, #0b2a4a, #1c4f8a);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.btn {
  background: #d4af37;
  color: #0b2a4a;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.services .service-grid div {
  background: white;
  padding: 20px;
  border-left: 5px solid #d4af37;
}

.contact form {
  max-width: 500px;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
}

.contact button {
  background: #d4af37;
  color: #0b2a4a;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: #0b2a4a;
  color: white;
  text-align: center;
  padding: 20px;
}
.amdac-logo img {
    max-width: 250px;  /* bigger logo on desktop */
    height: auto;
    display: block;
}
/* Gallery grid styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

