


.hero-section {
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00ffea;
}

.hero-section p {
    color: #cfd8dc;
    font-size: 1.2rem;
}

.sections-title {
    font-family: 'Orbitron';
    color: #00ffea;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.services-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.services-icon {
    font-size: 3rem;
    color: #00ffc3;
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.services-card:hover .services-icon {
    color: #ff006a;
    transform: scale(1.2);
}

.services-card h4 {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
}

.services-card p {
    color: #cfd8dc;
    font-size: 0.95rem;
}

.badge-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff006a;
    color: white;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 50px;
    font-weight: bold;
}



  
   
        
.contact-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(0px);
  z-index: 1;
}

.contact-box {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  padding: 45px 35px;
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 40px rgba(148, 255, 255, 0.25),
    0 0 40px rgba(10, 171, 171, 0.15),
    0 0 60px rgba(100, 240, 240, 0.08) inset;
  transition: all 0.4s ease;
  border-radius: 12px;
}

.contact-box:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow:
    0 0 30px rgba(0, 255, 255, 0.5),
    0 0 60px rgba(0, 128, 255, 0.3),
    0 0 90px rgba(0, 255, 255, 0.2),
    0 0 50px rgba(0, 255, 255, 0.3) inset;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-box h2 {
  color: #00e0ff;
  font-size: 2rem;
}

.contact-box p {
  font-size: 1.08rem;
  color: #e0e0e0;
  line-height: 1.7;
}

.btn-contact {
  background: linear-gradient(135deg, #00e0ff, #0079ff);
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #00c2ff, #005eff);
  transform: scale(1.05);
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin: 0 8px;
  border-radius: 50%;
  transition: 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  background: #00e0ff;
  color: #000;
  transform: rotate(5deg);
}

.contact-image {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
  transition: 0.4s ease;
}

.contact-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .contact-box {
    margin-top: 30px;
  }
}