/* Global Styles */
body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  background-color: #0d0d0d;
  color: #cad7de;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background: #1a1a1a;
  padding: 15px 0;
  width: 100%;
  top: 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 1000;
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #4ea3ff;
  width: 150px;
  height: 150px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #cad7de;
  text-decoration: none;
}
.nav-links a:hover {
  color: #4ea3ff;
}
.btn {
  background: #0e93d1;
  color: #cad7de;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn:hover {
  background: #357edd;
}
.btn.dark {
  background: #111;
}
.btn.dark:hover {
  background: #222;
}

/* Banner */
.home-img {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 80%;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-content p {
  color: #bbb;
  margin-bottom: 30px;
}

/* Services */
.services {
  padding: 80px 20px;
  background: #1a1a1a;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Pricing */
.pricing {
  padding: 80px 20px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.pricing-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.pricing-card.highlight {
  background: #4ea3ff;
  color: #cad7de;
}
.price {
  font-size: 36px;
  margin: 20px 0;
}
.price span {
  font-size: 18px;
}
.pricing-card.bundle {
  background: #2a2a2a;
  border: 2px solid #4ea3ff;
  transform: scale(1.05);
}
.pricing-card.bundle h4 {
  color: #4ea3ff;
}
.ribbon {
  position: absolute;
  top: 10px;
  right: -30px;
  background: #ff4757;
  color: #cad7de;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Contact */
.contact {
  padding: 80px 20px;
  background: #1a1a1a;
  text-align: center;
}
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}
.contact-form textarea {
  min-height: 120px;
}

/* Footer */
#footer .share_content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.site-footer {
    background-color: #02050E;
    color: #847C7F;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    margin-top: auto;
    border-top: 2px solid #847C7F;
}
.site-footer a {
    color: #847C7F;
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer strong {
    color: #cad7de;
}
.footer-powered {
    margin: 0.25rem 0;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 30px;
}
.footer-icon {
    width: 150px;
    height: 150px;
    vertical-align: middle;
}