body {
  background-color: #121212;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #f0f0f0;
}

/* Main Unified Desktop Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: #121212;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Left side: Logo image + text inside rounded container */
.header-left {
  display: flex;
  align-items: center;
  background: #1E1E1E;
  padding: 8px 16px;
  border-radius: 40px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

.logo-link .nav-middle-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

/* Right side: nav links inside curved pill */
.header-right {
  display: flex;
  gap: 20px;
  background: #1E1E1E;
  padding: 10px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-right a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-right a:hover {
  color: #007aff;
}

/* Mobile Header */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  background: #121212;
  padding: 14px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.mobile-logo-link {
  text-decoration: none;
}

.mobile-logo {
  background: #1E1E1E;
  padding: 6px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}
.mobile-logo img {
  width: 33px;
  height: 12px;
  margin-right: 5px;
}

.mobile-text-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f0f0f0;
}

.mobile-menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: #f0f0f0;
  padding: 6px 12px;
  background: #1E1E1E;
  border-radius: 40px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: linear-gradient(135deg, #1E1E1E, #2a2a2a);
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 20px 20px;
}

.mobile-menu a {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 16px;
  margin: 12px 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #007aff;
}

/* Responsive display for mobile header */
@media (max-width: 768px) {
  .main-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: #1E1E1E;
  color: #FFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 20px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  color: #CCC;
  margin-bottom: 24px;
}

/* Service Section */
.service-section {
  padding: 40px 20px;
  text-align: center;
}

.service-curve {
  background: #1E1E1E;
  border-radius: 40px;
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.left-layout .service-image {
  order: 1;
}

.left-layout .service-text {
  order: 2;
}

.right-layout .service-image {
  order: 2;
}

.right-layout .service-text {
  order: 1;
}

.service-image {
  flex: 1;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-text {
  flex: 1;
  text-align: left;
}

.service-text h2 {
  color: #FFF;
  font-size: 34px;
  margin-bottom: 24px;
}

.service-text p {
  font-size: 18px;
  color: #CCC;
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: #1E1E1E;
  padding: 40px 20px 20px;
  color: #f0f0f0;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  background-color: white;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  margin-top: 30px;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
  }

  .service-image, .service-text {
    flex: none;
    width: 100%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .service-text h2 {
    font-size: 28px;
  }

  .service-text p {
    font-size: 16px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand h2 { font-size: 22px; }
  .social-icons a img {
    width: 18px;
    height: 18px;
  }
}
