* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: #1c1c1c;
  padding: 0.5rem 0;
  border-bottom: 2px solid #a78b5f;
}

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

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 20px;
  height: 20px;
  border-radius:40%;
  object-fit: cover;
  border: 2px solid #c9a45c;
}

.logo-text {
  font-size: 1.4rem;
  color: #f5f5f5;
  line-height: 1.2;
  text-transform: uppercase;
}

.logo-text span {
  color: #c9a45c;
  font-weight: 400;
  font-size: 1rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

nav a:hover {
  color: #c9a45c;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1b1b1b, #121212);
  color: #fff;
  padding: 4rem 0;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: #c9a45c;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 280px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #c9a45c;
}
.hero-heading-badge {
  display: flex;
  align-items: center;
  gap: 20px; /* space between heading and badge */
}

.hero-heading-badge h2 {
  font-size: 2.5rem;
  color: #c9a45c;
  margin: 0;
}


.btn {
  background-color: #c9a45c;
  color: #121212;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #a78b5f;
}

/* About Section with Transparent Background */
.about {
  background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)),
              url('sign.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 4rem 0;
}

.about h2 {
  color: #c9a45c;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about p {
  font-size: 1rem;
  color: #ddd;
  max-width: 800px;
}

/* Services */
.services {
  background-color: #1c1c1c;
  padding: 3rem 0;
}

.services h2 {
  color: #c9a45c;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.services ul {
  list-style: disc inside;
  margin-top: 1rem;
  color: #ddd;
}

/* Contact */
.contact {
  background-color: #121212;
  padding: 3rem 0;
}

.contact h2 {
  color: #c9a45c;
  margin-bottom: 1rem;
}

.contact p {
  color: #ddd;
  margin-bottom: 0.5rem;
}

.contact a {
  color: #c9a45c;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #1c1c1c;
  text-align: center;
  padding: 1rem 0;
  border-top: 2px solid #a78b5f;
  color: #999;
  font-size: 0.9rem;
}
.certifications img {
  transition: transform 0.2s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.certifications img:hover {
  transform: scale(1.05);
  opacity: 1;
}