/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family:sans-serif;
    scroll-behavior: smooth;
    background-color: #0c0f1a;
    color: #e0f7ff;
    overflow-x: hidden;
  }
  
  /* ===== Ambient Futuristic Glow ===== */
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    background:
      radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.06), transparent 60%),
      radial-gradient(circle at 70% 80%, rgba(0, 130, 255, 0.03), transparent 60%);
    z-index: -1;
  }
  
  /* ===== Typography & Neon Accents ===== */
  h1, h2, p {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
  }
  
  h2 {
    font-size: 2.2rem;
    color: #00FFFF;
    text-align: center;
    margin-bottom: 2rem;
  }
  
.font-35{
font-size: 3.5rem;
}
  p.lead {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #cdefff;
  }


p.lead-aboutus {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #B0E0E6;
  }


p.lead-about {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
  //  max-width: 700px;
    margin: 0 auto;
    color: #cdefff;
  }
  
  /* ===== HERO SECTION ===== */
  .hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: url('../image/ICS.jpeg') no-repeat center center / cover;
    color: #ffffff;
  }
  
  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 20, 30, 0.6));
    z-index: 0;
  }
  
  .hero-section > * {
    position: relative;
    z-index: 1;
  }
  
  .branding {
   // margin-top: 1rem;
  }
  
  .brand-name {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #00f0ff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: pulseGlow 4s ease-in-out infinite;
  }

.brand-tagline {
 font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #B0E0E6;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: pulseGlow 4s ease-in-out infinite;
}
  
  @keyframes pulseGlow {
    0%, 100% {
      text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }
    50% {
      text-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
    }
  }
  
  .hero-content {
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 800px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
  }
  
  /* ===== SECTION CONTAINERS ===== */
  section:not(#aboutus) {
    padding: 5rem 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.04);
    background-color: #0e121f;
  }
  
  #aboutus {
   border-bottom: 1px solid rgba(0, 255, 255, 0.03);
  }

#service {
    background: linear-gradient(to bottom right, #0f1320, #0c111a);
border-bottom: 1px solid rgba(0, 255, 255, 0.03);
  }

#about {
    background: linear-gradient(to bottom right, #0f1320, #0c111a);
border-bottom: 1px solid rgba(0, 255, 255, 0.03);
  }

  
  #contact {
    background: radial-gradient(circle at center, #0a0e1a, #0d1117);
    border-bottom: 1px solid rgba(0, 255, 255, 0.03);
  }
  
  /* ===== Contact Info ===== */
  #contact p {
    text-align: center;
    font-size: 1.2rem;
    color: #a0c8e0;
  }

.card {
      background-color: #1e1e1e;
      border: 1px solid rgba(0, 255, 255, 0.03);
      transition: transform 0.2s ease-in-out;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
    }

    .card-icon {
      font-size: 2rem;
color: #B0E0E6;
    }

    .card-title {
      margin-top: 0.75rem;
      font-size: 1.25rem;
      font-weight: 600;
color: #B0E0E6;
    }

    .card-text {
      font-size: 0.95rem;
      color: #B0E0E6;
    }
  
.section {
      padding: 4rem 1rem;
    }

    .feature-icon {
      font-size: 1.5rem;
      color: #0d6efd;
      margin-right: 0.75rem;
    }

    .feature-item {
      background-color: #1f1f1f;
      border: 1px solid #333;
      padding: 1rem 1.25rem;
      border-radius: 10px;
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      transition: background-color 0.3s;
    }

    .feature-item:hover {
      background-color: #2a2a2a;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 2rem;
      text-align: center;
    }
  /* ===== Responsive ===== */
  @media (max-width: 768px) {
    .brand-name {
      font-size: 2.2rem;
    }
  
    .hero-content {
      font-size: 1rem;
      padding: 1rem;
    }
  
    section {
      padding: 3rem 1rem;
    }
  }
  