/* 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: #2b2a30; /* Dark gray header */
  color: #d4af37; /* Gold text */
  padding: 30px 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: 25px;
  text-align: center;
}

.navbar a {
  margin: 0 20px;
  font-weight: 600;
  color: #d4af37;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* 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;
}

blockquote p {
  margin-bottom: 12px;
  line-height: 1.6;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* 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: 40px 0 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #d4af37;
}

/* Disclaimer blockquote uses same styling as other blockquotes */

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

  .industries {
    flex-direction: column;
  }

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

  .navbar a {
    margin: 0 10px;
    font-size: 1rem;
    display: inline-block;
  }

  .logo {
    height: 150px;
  }

  .company-title {
    font-size: 1.3rem;
  }

  .company-id {
    font-size: 0.8rem;
  }

  header {
    padding: 20px 0;
  }

  .disclaimer {
    padding: 0 10px;
  }

  .disclaimer blockquote {
    padding: 12px 15px;
    font-size: 0.8rem;
  }

  .disclaimer h4 {
    font-size: 1rem;
  }
}

/* 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;
}

/* Go to Top Button */
.go-top-btn {
  position: fixed;
  bottom: 95px; /* Position above WhatsApp button */
  right: 25px;
  background-color: #d4af37; /* Gold color to match theme */
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none; /* Hidden by default, shown on scroll */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

.go-top-btn:hover {
  background-color: #bfa94f;
  transform: translateY(-3px);
}

.go-top-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.go-top-btn span {
  line-height: 1;
  font-size: 0.75rem;
}

/* 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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.4));
}

.company-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.company-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d4af37;
  display: block;
  margin-bottom: 5px;
}

.company-id {
  font-size: 0.9rem;
  color: #f0e6b6;
  display: block;
}
