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

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body { background-color: #f4f4f4; }

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;  /* thinner padding */
  background-color: #1c1c1c;  /* dark grey/black */
  color: white;
  position: relative;
  height: 60px; /* slightly thinner header */
}

/* Logo placeholder */
.logo {
  font-size: 1.5rem; /* slightly smaller */
  font-weight: bold;
  border: 1px dashed #ccc;  /* subtle grey border */
  padding: 6px 15px;
  border-radius: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 3px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 10px rgba(255,255,255,0.6); }
  100% { box-shadow: 0 0 3px rgba(255,255,255,0.3); }
}

/* Navigation buttons */
nav {
  display: flex;
  gap: 10px;
}

nav button {
  background-color: #333; /* dark grey */
  color: #fff;
  border: 1px solid #555;
  padding: 6px 15px; /* thinner */
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

nav button:hover {
  background-color: #555;
  color: #fff;
  transform: translateY(-2px);
}

/* Banner section */
.banner {
  text-align: center;
  padding: 60px 20px; /* slightly thinner */
  background: url('https://via.placeholder.com/1500x400') center/cover no-repeat;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  animation: fadeIn 2s ease-in;
}

.banner h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.banner p {
  font-size: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}


/* HERO SECTION */
.hero {
    position: relative;
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0; left: 0;
}
.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
}
.hero-content p {
    font-size: 20px;
    margin: 10px 0 30px 0;
}
.btn {
    background: #2c7dfa;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

/* SECTION TITLES */
section h2 {
    text-align: center;
    font-size: 32px;
    margin-top: 40px;
}

/* SERVICES */
.services {
    padding: 40px 20px;
}
.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.service-box {
    width: 300px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.service-box h3 {
    margin-bottom: 10px;
}

/* WHY US */
.why-us {
    padding: 40px 20px;
    background: #ffffff;
}
.why-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.why-box {
    width: 300px;
    padding: 20px;
    background: #eef3ff;
    border-radius: 10px;
}

/* GALLERY */
.gallery {
    padding: 40px 20px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.gallery-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.gallery-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

/* CONTACT */
.contact {
    padding: 1px 10px;
    background: #1c1c1c;
    color: white;
    text-align: center;
}
.contact-box {
    margin-top: 1px;
}
.contact a {
    color: white;
    text-decoration: underline;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
    font-size: 14px;
}
