* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background: #000;
  border-bottom: 1px solid #333;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header h1 {
  font-size: 28px;
  color: #fff;
}

header p {
  font-size: 14px;
  color: #ccc;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1,
.hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  color: #ddd;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* Cards + Services */
.card,
.service-box {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.03);
  color: #fff;
}

.card h3 {
  margin-bottom: 15px;
  color: #fff;
}

.card ul {
  padding-left: 20px;
}

.card li {
  margin-bottom: 10px;
  color: #ddd;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.section p {
  color: #ddd;
}

.gray {
  background: #0a0a0a;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-box {
  text-align: center;
  font-weight: 600;
}

.center {
  text-align: center;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid #333;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 0;
}

.footer-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d4af37;
}

.footer-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #d4af37;
}

/* Social Icons */
.social-section {
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #111;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #d4af37;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-wrap {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .social-section {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    gap: 15px;
  }

  .hero h1,
  .hero h2 {
    font-size: 30px;
  }

  .section h2 {
    font-size: 28px;
  }

  .hero p,
  .footer-box p {
    font-size: 16px;
  }
}

```css id="8k41m"
.social-icons a:nth-child(1) {
  background: #E1306C; /* Instagram */
  color: #fff;
}

.social-icons a:nth-child(2) {
  background: #1877F2; /* Facebook */
  color: #fff;
}

.social-icons a:nth-child(3) {
  background: #0A66C2; /* LinkedIn */
  color: #fff;
}

.social-icons a:nth-child(4) {
  background: #FF0000; /* YouTube */
  color: #fff;
}

.social-icons a:nth-child(5) {
  background: #25D366; /* WhatsApp */
  color: #fff;
}

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
```
