/* General Body Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-color: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Modern Cyber Navigation */
.navbar {
    background: #1e1e1e;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.05);
    padding: 0 0.3em;
  }
  
  .navbar-logo {
    height: 3em;
    filter: drop-shadow(0 0 2px #00f3ff)
      drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
    transition: filter 0.3s ease;
  }
  
  .navbar-logo:hover {
    filter: drop-shadow(0 0 3px #00f3ff)
      drop-shadow(0 0 8px rgba(0, 243, 255, 0.5));
  }
  
  .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 0.5em;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -0.3125em;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f3ff, rgba(0, 243, 255, 0));
    transition: width 0.3s ease;
  }
  
  /* Active Page Style */
  .nav-link.active,
  .nav-link:hover,
  .nav-link:focus {
    color: #00f2ff80 !important;
    outline: none;
  }
  
  .nav-link.active::after,
  .nav-link:hover::after,
  .nav-link:focus::after {
    width: 100%;
  }
  
  .navbar-toggler {
    border: 0;
    padding: 0.2em;
    cursor: pointer;
    width: 40px;
    height: 50px;
    position: relative;
    background: transparent;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 243, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
  }
  
  .navbar-toggler:hover .navbar-toggler-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 2px #00f3ff);
  }
  
  .navbar-toggler::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%/60% 60% 40% 40%;
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2),
      inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: cyberPulse 2s infinite ease-in-out;
  }
  
  @keyframes cyberPulse {
    0%,
    100% {
      opacity: 0.6;
    }
    50% {
      opacity: 0.3;
    }
  }
/* Hero Section Styles */
.hero-section {
    padding: 1em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(190deg, rgba(0,0,0,0) 75%, rgba(0, 136, 255, 0.203) 100%);
}

.hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Simplified calc */
    gap: 2rem;
    margin: 0 auto;
    padding: 6em 0;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    order: 1;
    max-width: 100%;
}

.hero-image {
    order: 2;
    width: 100%;
}

.hero-image img {
    width: 100%;
    border-radius: 3em;
}

.hero-section h1 {
    font-size: min(max(0.9rem, 6vw), 2rem); /* Simplified clamp */
    margin: 0.5em 0;
    font-weight: bold;
}

.hero-section p {
    font-size: min(max(0.9rem, 3vw), 1.2rem); /* Simplified clamp */
    margin: 0.5em 0;
}

.hero {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Simplified calc */
}

.hero-content {
    order: 1; /* Simplified calc */
}

.hero-image {
    order: 2; /* Simplified calc */
}

/* Button Styles */
.btn-primary,
.btn-service {
    border-radius: 2em;
    padding: 0.75em 2em;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    margin: 0.9em 0.2em;
}

.btn-primary {
    border: none;
    background: #ff8000;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-0.3125em);
    background: color-mix(in srgb, #ff8000, black 10%);
}

.btn-service {
    border: 2px solid #ff8000;
    background: transparent;
    color: #ff8000;
}

.btn-service:hover {
    background: #ff8000;
    color: #fff;
    border-color: transparent;
    transform: translateY(-0.3125em);
}

/* Section Title Styles */
.section-title {
    margin-top: 1.5em;
}

/* Service Card Styles */
.service-card {
    border: none;
    border-radius: 0.625em;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    margin: 1em 0;
    padding: 1.5em;
}

.service-card:hover {
    transform: translateY(-0.625em);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #00430d;
}

.service-card i {
    color: #ff8000;
}

.service-card h3,
.service-card h2,
#about h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.service-card p,
#about p {
    color: #fff;
    font-size: 1em;
}

/* About, Contact, and Payment Section Styles */
#about .container,
#contact .container,
#payment .container {
    padding: 2em 0.5em;
}

#about img {
    max-width: 80%;
    border-radius: 0.625em;
    margin-bottom: 1em;
}

/* Footer Styles */
.footer {
    background: color-mix(in srgb, #1e1e1e, black 50%);
    color: #fff;
    padding: 2em 1em;
    text-align: center;
}

#paymentForm {
    background: linear-gradient(135deg, rgba(1, 81, 146, 0.436), black),radial-gradient(circle, rgba(0, 0, 0, 0.479), rgb(5, 0, 100));
    border-radius: 1.5em;
    padding: 1em;
    border: 0.2em solid #8f92c796;
    margin: 2em 0;
    box-shadow: #00234e 0 -1em 3em;
    background-size: 200% 100%;
    animation: smoke 7s infinite ease-in-out;
}

@keyframes smoke {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}