
* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: radial-gradient(circle at top, #0f2027, #203a43, #2c5364);
    color: #00ffcc;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  /* Header layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid #00ffcc;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px #00ffcc66;
  }
  
  /* Site title styling */
  .site-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffcc;
    margin: 0;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 12px #00ffcc, 0 0 20px #00ffcc;
  }
  
  /* Navigation menu on the right */
  .site-nav {
    display: flex;
    gap: 2.5rem;
  }
  
  .site-nav a {
    color: #00ffcc;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .site-nav a:hover {
    color: white;
    text-shadow: 0 0 10px #00ffcc;
  }
  
  
  /* Main Content */
  main {
    background: rgba(0, 0, 0, 0.5);
    margin: 2rem auto;
    padding: 2rem;
    width: 95%;
    max-width: 1400px;
    border-radius: 15px;
    box-shadow: 0 0 25px #00ffcc55;
    backdrop-filter: blur(8px);
  }
  
  
  main h2, main h3 {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
    margin-bottom: 1rem;
  }
  
  p, ul {
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  ul {
    list-style-type: square;
    padding-left: 2rem;
  }

  .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #00ffcc;
}

.stay-signed {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.forgot-link {
  color: #00ccff;
  text-decoration: underline;
}

.forgot-link:hover {
  color: white;
  text-shadow: 0 0 5px #00ccff;
}

  
  
  /*  LOgin Form Styling */
  form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00ffcc99;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 400px;
    margin-top: 2rem;
    box-shadow: 0 0 15px #00ffcc44;
  }
  
  form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 0.6rem;
    background: #111;
    border: 1px solid #00ffcc88;
    color: #00ffcc;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  form button {
    padding: 0.7rem 1.5rem;
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00ffcc;
  }
  
  form button:hover {
    background: #0ff;
    box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
  }*/


  
  /* Section container spans full width */
  .services-list {
    width: 100%; /* ✅ changed from 100vw */
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
  }
  
  
  /* Each block stretches edge to edge, centered with max-width */
  .service-block-advanced {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border: 1px solid #00ffcc88;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffcc22;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Adjust for responsive screens */
  @media (max-width: 768px) {
    .service-block-advanced {
      flex-direction: column;
    }
  
    .service-left,
    .service-right {
      width: 100%;
      margin-right: 0;
    }
  
    .services-list {
      padding: 1rem;
    }
  }
  
  
  .service-block-advanced:hover {
    background-color: #111;
    box-shadow: 0 0 25px #00ffcc66;
  }
  
  .service-left {
    flex: 1;
    margin-right: 2rem;
  }
  
  .service-left h3 {
    font-size: 1.7rem;
    color: #00ffcc;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 0 0 8px #00ffcc;
  }
  
  .service-left p {
    font-size: 1rem;
    color: #bff;
    margin: 0;
  }
  
  .service-right {
    flex: 1;
  }
  
  .service-right ul {
    list-style: square;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: #00ffee;
  }

  .service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
  }
  
  .service-buttons button {
    background-color: #00ffcc;
    color: #000;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px #00ffcc88;
    transition: all 0.3s ease;
  }
  
  .service-buttons button:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 20px #00ffcc;
  }/* Animate on scroll */
  .service-block-advanced {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
  
    /* Glassmorphism + animation */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.15);
  
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    position: relative;
  }
  
  .service-block-advanced.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-block-advanced::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(to right, #00ffcc, transparent);
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Hero Section Layout */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .hero-left {
    flex: 1;
    animation: fadeInLeft 1.2s ease-out forwards;
  }
  
  .hero-title {
    font-size: 3.5rem;
    color: #00ffcc;
    text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: #bfffff;
    line-height: 1.6;
    text-shadow: 0 0 6px #00ffcc88;
    margin-bottom: 0.8rem;
  }
  
  /* Right Image Section */
  .hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1.2s ease-out forwards;
  }
  
  .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
  }
  
  /* Fade animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .hero-section {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-left, .hero-right {
      flex: none;
      width: 100%;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  }

  /* Activity Section */
.activity-section {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    flex-wrap: wrap;
  }
  
  .activity-block {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #00ffcc55;
    border-radius: 12px;
    padding: 2rem;
    color: #bfffff;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    transition: all 0.8s ease-out;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(30px);
  }

  .activity-block h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #00ffcc;
    text-shadow: 0 0 8px #00ffcc;
    margin-bottom: 1rem;
  }
  
  
  /* Animation Classes */
  .animate-left {
    animation: slideInLeft 1.2s ease-out forwards;
    animation-delay: 0.4s;
  }
  
  .animate-right {
    animation: slideInRight 1.2s ease-out forwards;
    animation-delay: 0.6s;
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .activity-section {
      flex-direction: column;
    }
  }






  /* for the form in index page*/
  .form-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
    background: transparent;
  }
  
  .contact-form {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 2rem 2.5rem;
    max-width: 900px;
    width: 100%;
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    animation: fadeInUp 1s ease-out;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    gap: 2rem;
  }
  
  .form-heading {
    text-align: center;
    font-size: 2.2rem;
    color: #00ffcc;
    text-shadow: 0 0 12px #00ffcc;
    margin: 0;
  }
  
  .form-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  
  .contact-form input,
  .contact-form textarea {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #00ffcc88;
    background: #111;
    color: #00ffcc;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    width: 100%;
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #00ffccaa;
  }
  
  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .contact-form button {
    align-self: center;
    padding: 0.8rem 2rem;
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    box-shadow: 0 0 12px #00ffcc88;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #0ff;
    box-shadow: 0 0 25px #00ffcc, 0 0 40px #00ffcc;
    transform: scale(1.05);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .contact-form {
      padding: 1.5rem;
    }
  }

  
  
  /* Simple fade-in animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  
  


  
  
  
  /* Footer */
  footer {
    background: #000;
    color: #00ffcc;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #00ffcc88;
    margin-top: 3rem;
  }
  