/* === Services Hero Heading === */
.services-hero {
    text-align: center;
    height:88vh;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .services-hero-icon {
    margin-top: 50vh;
    font-size: 4rem;
    color: #00aaff;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.7);
    animation: bounce 2s infinite;
  }
  
  .services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00aaff, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative; /* for underline */
  }
  
  /* Underline effect */
  .services-hero-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #1e90ff, #00aaff);
    background-size: 200% auto;
    border-radius: 4px;
    animation: underlineMove 3s linear infinite;
  }
  
  @keyframes underlineMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
  }
  
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
/* === Services Section === */
#services {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b0b0b, #111827);
    color: white;
    text-align: center;
  }
  
  .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .header-icon {
    font-size: 2.2rem;
    color: #00aaff;
    animation: bounce 2s infinite;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #00aaff;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 14px;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  /* Border Animation */
  .service-card::before, .service-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #00aaff;
    transition: all 0.4s ease;
  }
  
  .service-card::before { top: 0; left: 0; }
  .service-card::after { bottom: 0; right: 0; }
  
  .service-card:hover {
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.7);
  }
  
  /* Animated Border on Hover */
  .service-card:hover::before {
    width: 100%;
    transition-delay: 0s;
  }
  .service-card:hover::after {
    width: 100%;
    transition-delay: 0.4s;
  }
  .service-card:hover {
    border-left: 2px solid #00aaff;
    border-right: 2px solid #00aaff;
  }
  
  /* Service Icon */
  .service-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #00aaff;
    transition: 0.3s;
  }
  
  .service-card:hover .service-icon {
    color: #1e90ff;
    transform: rotate(10deg) scale(1.2);
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  /* Card CTA */
  .card-cta {
    margin-top: 20px;
  }
  .card-cta p {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 10px;
  }
  
  /* CTA Bottom */
  .services-cta {
    margin-top: 60px;
  }
  .services-cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
  }
  
  /* Button Style */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0004ff, #3f51b5);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  /* Button Hover */
  .cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 26, 255, 0.7);
    border-color: #00aaff;
  }
  
  /* Icon Animation */
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .service-list {
    margin: 15px 0;
    padding-left: 20px;
    text-align: left;
    color: #ddd;
  }
  
  .service-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .service-list li i {
    color: #00aaff;
    font-size: 1rem;
    min-width: 18px;
  }
  /*mobile optimiz*/
  @media (max-width: 990px) {
    .services-grid{
        display: block;
    }
    .service-card{
        margin-top: 30px;
    }
  }