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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000; /* Black text on white background */
  background-color: #fff; /* White background */
}

a {
  color: #d4af37; /* Gold links */
  text-decoration: none;
}

a:hover {
  color: #bfa94f; /* Darker gold on hover */
}

/* Container */
.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

/* Header */
header {
  background-color: #000; /* Black header */
  color: #d4af37; /* Gold text */
  padding: 20px 0;
  border-bottom: 4px solid #d4af37; /* Gold border */
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #d4af37;
}

.tagline {
  font-size: 0.95rem;
  color: #f0e6b6; /* Soft gold/white */
}

.navbar {
  margin-top: 10px;
}

.navbar a {
  margin: 0 15px;
  font-weight: 600;
  color: #d4af37;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #fff; /* White on hover */
}

/* Hero */
.hero {
  background: linear-gradient(to right, #d4af37, #bfa94f); /* Gold gradient */
  color: #000; /* Black text */
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #000;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #3a2e00; /* Dark gold */
}

.btn-primary {
  background: #000;
  color: #d4af37;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #222;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 0;
  background: #fff; /* White background */
  color: #000; /* Black text */
}

.gray-bg {
  background: #f7f7f7; /* Light gray for alternate sections */
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #d4af37;
}

/* Grid Layouts */
.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.grid-2 ul {
  flex: 1;
  list-style: none;
  color: #000;
}

.grid-2 li {
  margin-bottom: 12px;
}

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-box {
  background: #000;
  padding: 20px;
  border: 1px solid #d4af37;
  flex: 1 1 calc(50% - 20px);
  text-align: center;
  font-weight: 600;
  color: #d4af37;
  border-radius: 6px;
}

/* Blockquote */
blockquote {
  border-left: 5px solid #d4af37;
  padding: 20px;
  background: #f0e6b6; /* Soft gold background */
  font-style: italic;
  font-size: 1.1rem;
  color: #000;
}

/* Contact */
.contact p {
  margin-bottom: 12px;
  color: #000;
}

.btn-secondary {
  margin-top: 20px;
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background: #bfa94f;
  color: #000;
}

/* Footer */
footer {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-2 {
    flex-direction: column;
  }

  .industries {
    flex-direction: column;
  }

  .navbar {
    text-align: center;
    margin-top: 15px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366; /* Keep WhatsApp green */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Blog Section */
.section.gray-bg {
  background-color: #f7f7f7;
}

#blog h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #d4af37;
}

.blog-post {
  background: #fff;
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
  line-height: 1.6;
  color: #000;
}

.blog-post h4 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-post h5 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  color: #bfa94f;
  font-weight: 600;
}

.blog-post ul, .blog-post ol {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

.blog-post ul li, .blog-post ol li {
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.blog-post p {
  margin-bottom: 1rem;
  color: #000;
}

/* Header Container & Logo */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo {
  height: 40px;
  margin-right: 10px;
  object-fit: contain;
}
