/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  transition: all 0.3s ease;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #ffffff;
  color: #b8860b; /* golden brown */
  border-bottom: 2px solid #ddd;
  padding: 5px 0;
  text-align: center;
}


/* Header Bar Layout */
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px 0;
}


.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px 0;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}


/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 10px;
  flex-wrap: wrap;
}
nav ul li {
  margin: 10px 15px;
}
nav ul li a {
  color: #b8860b;
  text-decoration: none;
  font-weight: bold;
    transition: color 0.3s;
}
nav ul li a:hover {
  color: #d4af37; /* lighter gold on hover */
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('../images/hero-bg.png') no-repeat center center/cover;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark transparent layer */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ffd700; /* golden */
  text-shadow: 1px 1px 4px #000;
}

.hero p {
  font-size: 1.2em;
  text-shadow: 1px 1px 3px #000;
}

/* Services Section */

.services {
  padding: 40px 0;
  background: #fff;
  
}
.services h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.service {
  flex: 1 1 45%;
  background: #eaeaea;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  
}
.service h3 {
  margin-bottom: 10px;
  color: #333;
}
.service img {
  max-width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}



/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* Button Pulse Animation */
.pulse {
  animation: pulseAnim 0.6s ease-in-out;
}
@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* about section */
.about-section, .contact-section {
  background: #fff;
  padding: 40px 0;
}

.about-section h2, .contact-section h2 {
  text-align: center;
  color: #b8860b;
  margin-bottom: 30px;
}

.about-section p, .contact-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.about-section ul {
  margin-left: 20px;
  list-style: disc;
  font-size: 1em;
}

/* contact section */ 


/* Contact header with image and text */
.contact-header.two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 10px;
  gap: 20px;
}

.contact-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact-text {
  flex: 1 1 45%;
}

.contact-text h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.contact-text h2 span {
  color: #b8860b;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.contact-form button {
  background-color: #b8860b;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #a1780a;
}

.map-container {
  margin-top: 30px;
}

.contact-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  background-color: #f9f9f9;
}

.contact-header img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


.services-page {
  padding: 40px 0;
  background: #fff;
}

.services-page h2 {
  text-align: center;
  color: #b8860b;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.service-item h3 {
  color: #b8860b;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #444;
}
