/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: "Poppins", sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 5px;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.8em;
  font-weight: 600;
  color: #d7aaff;
  text-decoration: none;
}
.logo img {
  width: 50px; /* Adjust as needed */
  height: auto;
  padding-top: 10px;
}
.nav-menu {
  list-style: none;
  display: flex;
}
.nav-menu li {
  margin-left: 20px;
}
.nav-menu li a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-menu li a:hover {
  color: #d7aaff;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #e0e0e0;
  margin-bottom: 4px;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("assets/logobanner2.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 70vh; /* shorter on mobile */
    background-position: center top;
    background-size: cover;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 60vh;
    background-position: top;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}
.btn {
  background: #d7aaff;
  color: #121212;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: #b58de0;
}
.small-btn {
  padding: 8px 20px;
  font-size: 0.9em;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #1e1e1e;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1em;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #1e1e1e;
  text-align: center;
  color: #e0e0e0;
}
.services h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.service-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
  text-align: left;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1em;
  margin-bottom: 10px;
}
.service-card ul {
  margin-left: 1.5em;
  list-style-type: disc;
}
.service-card li {
  margin-bottom: 0.5em;
}
.maintenance-plans {
  margin-top: 40px;
}
.maintenance-plans h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}
.maintenance-plans ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.maintenance-plans li {
  background: #1a1a1a;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* Portfolio Section */
.portfolio {
  padding: 5px 0 100px 0;
  background: #1e1e1e;
  text-align: center;
}
.portfolio h2 {
  font-size: 2.5em;
  margin-bottom: 50px;
}

/* Projects Section */
.projects {
  padding: 80px 0;
}
.projects h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5em;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.project-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-info {
  padding: 20px;
  text-align: left;
}
.project-info h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}
.project-info p {
  font-size: 1em;
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  padding: 5px 0 100px 0; /* 40px top, 80px bottom */
  background: #1e1e1e;
  text-align: center;
}
.contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.contact p {
  font-size: 1.1em;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}
.contact-form button {
  align-self: center;
}

/* Footer */
.footer {
  background: #0d0d0d;
  padding: 30px 0;
  text-align: center;
}
.footer p {
  margin-bottom: 10px;
  font-size: 0.9em;
}
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer .social-links a {
  color: #d7aaff;
  font-size: 1.5em;
  transition: color 0.3s;
}
.footer .social-links a:hover {
  color: #b58de0;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #d7aaff;
  border: none;
  padding: 15px 17px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background 0.3s;
}
#backToTop:hover {
  background: #b58de0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    padding-top: 30px;
    margin: 0;
    border-radius: 50px;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .hamburger {
    display: flex;
  }
}

.contact-logo {
  display: block;
  margin: 0 auto 20px;
  width: 190px; /* Adjust the size as needed */
  height: auto;
}
/* Maintenance Plans - Card Layout */
.maintenance-plans {
  margin-top: 40px;
  text-align: center;
}
.maintenance-plans h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
}
.maintenance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.maintenance-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.maintenance-card h4 {
  margin-bottom: 10px;
  font-size: 1.3em;
}
.maintenance-card .price {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}
.maintenance-card .description {
  font-size: 0.95em;
  line-height: 1.5;
}
.maintenance-card ul {
  margin-left: 1.5em;
  list-style-type: disc;
}
.maintenance-card li {
  margin-bottom: 0.5em;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0px;
  background: #1e1e1e;
  text-align: center;
}
.portfolio h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
.portfolio p {
  font-size: 1.1em;
  margin-bottom: 30px;
}
.portfolio .btn {
  padding: 12px 30px;
  font-size: 1em;
  background: #d7aaff;
  color: #121212;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.portfolio .btn:hover {
  background: #b58de0;
}
/* Custom Software Section */
.custom-software {
  padding: 80px 0;
  background: #1e1e1e;
  color: #e0e0e0;
  text-align: center;
}
.custom-software h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}
.custom-software p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Software Offerings Cards */
.software-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.software-offerings .offering {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: left;
}
.software-offerings .offering h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.software-offerings .offering p {
  font-size: 1em;
  margin-bottom: 10px;
}
.software-offerings .offering p strong {
  font-weight: 600;
}
.software-offerings ul {
  margin-left: 1.5em;
  list-style-type: disc;
}
.software-offerings li {
  margin-bottom: 0.5em;
}
/* Add subtle glow around cards */
.service-card,
.project-card,
.maintenance-card,
.software-offerings .offering {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(215, 170, 255, 0.3);
}
