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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 2rem;
  background-color: #000;
  border-bottom: 1px solid #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00ffff;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 2rem 3rem;
}

.logo-wrapper {
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  animation: fadeIn 1.5s ease-in-out;
}


.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00cccc;
}

/* About Section */
.about-section {
  background-color: #111;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #222;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

.about-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-btn {
  background-color: #fff;
  color: #000;
}

.about-btn:hover {
  background-color: #eee;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #111;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #777;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Page */
.services-page {
  background-color: #000;
  color: #fff;
  padding-bottom: 3rem;
}

.services-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.services-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

.services-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #111;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 255, 255, 0.15);
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

.service-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  color: #ccc;
}

.service-card ul li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* About Page */
.about-page {
  background-color: #000;
  color: #fff;
  padding-bottom: 3rem;
}

.about-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.about-hero h1 {
  font-size: 2.8rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.about-content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.about-text h2 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

/* Contact Page */
.contact-page {
  background-color: #000;
  color: #fff;
  padding-bottom: 3rem;
}

.contact-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.contact-hero h1 {
  font-size: 2.8rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.contact-form-section {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: bold;
  color: #00ffff;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #222;
  border-radius: 10px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
}

.contact-form button {
  background-color: #00ffff;
  color: #000;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00cccc;
}

.about-text {
  padding: 0 1.5rem; /* Adds horizontal space inside the content */
  margin-top: 3rem;
}

.value-block {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #111; /* Optional: a subtle background box for contrast */
  border-radius: 12px;
  border: 1px solid #222;
}

.value-block h3 {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 0.8rem;
}

.value-block p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

.value-block {
  /* existing styles... */
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.value-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 255, 255, 0.1);
}

/* Thank You Page */
.thankyou-page {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 3rem;
}

.thankyou-section h1 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.thankyou-section p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.thankyou-section .btn {
  background-color: #00ffff;
  color: #000;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.thankyou-section .btn:hover {
  background-color: #00cccc;
}

.services-group {
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service-category {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.services-group {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-category {
  font-size: 2rem;
  text-align: center;
  color: #00ffff;
  margin-bottom: 2rem;
}

.section-divider {
  border: none;
  border-top: 1px solid #222;
  margin: 3rem auto;
  max-width: 60%;
}

/* Adjust service card layout */
.service-card {
  background-color: #111;
  border: 1px solid #222;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 255, 255, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 1rem;
}

.service-card ul {
  padding-left: 1.5rem;
  color: #ccc;
}

.service-card ul li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}