  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
  
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f2efef;
    color: #140101;
  }
  
  .service-hero {
    background: #e6f3ff;
    color: #333;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wavePattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 30 Q10 20 20 30 T40 30" fill="none" stroke="%23333" stroke-width="0.3" opacity="0.02"/><path d="M0 40 Q10 30 20 40 T40 40" fill="none" stroke="%23333" stroke-width="0.3" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23wavePattern)"/></svg>');
    pointer-events: none;
  }
  .service-hero .service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    text-align: left;
  }
  .hero-content p {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.8;
    font-weight: 300;
    text-align: left;
  }
  .hero-btn {
   background-color: #fbaf42;
  color: #154A91;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
   float: left;
  }
  .hero-btn:hover {
    transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(251, 175, 66, 0.7);
  
  }
  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  .hero-image img:hover {
    transform: scale(1.05);
  }
  
  .service-section {
   padding-top: 70px;
    padding-bottom: 10px;
    background: #0a0a0a;
  }
  .service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
  }
  .service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
  }
  .service-card:hover::before {
    transform: scaleX(1);
  }
  .service-card h3 {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  .service-card ul, .service-card ol {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .service-card li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    line-height: 1.7;
    color: #cccccc;
    font-weight: 300;
  }
  .service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
  }
  .service-card ul li::before {
    content: '✓';
  }
  .service-card ol {
    counter-reset: step-counter;
  }
  .service-card ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    font-size: 14px;
    line-height: 20px;
  }
  .highlight {
    font-weight: 600 !important;
    color: #667eea !important;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
  }
  
/* nav-bar */
.hori-selector{
    background: #e6f3ff;
}

.hori-selector .right,
.hori-selector .left{
    background: #e6f3ff;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}

  @media (max-width: 1024px) {
    .service-hero .service-container {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .hero-content h1 {
      font-size: 3em;
      text-align: center;
    }
    .hero-content p {
      font-size: 1.3em;
      text-align: center;
    }
    .hero-image img {
      max-width: 400px;
    }
    .service-grid {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .service-hero {
      padding: 80px 0 60px;
    }
    .service-hero .service-container {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    .hero-content h1 {
      font-size: 2.5em;
      text-align: center;
    }
    .hero-content p {
      font-size: 1.2em;
      text-align: center;
    }
    .hero-btn {

      width: 100%;
    
    }
    .hero-image img {
      max-width: 300px;
    }
    .service-card {
      padding: 30px;
    }
    .service-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .service-container {
      padding: 0 20px;
    }
  }

  /* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #8196D1 0%, #0E38AF 25%, #070F32 50%, #0E38AF 75%, #8196D1 100%);
    padding: 40px 0;
    text-align: center;
    width: fit-content;
    margin: 60px auto;
    border-radius: 20px;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fafafa;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #e0d8d8;
}

.cloud-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cloud-button.primary {
    background: #fca311;
    color: #070F32;
        padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
}

.cloud-button.primary:hover {
    background: #e8852a;
}

.cloud-button.secondary {
    background: #eee;
    color: #070F32;
    font-weight: 400;
        padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;

}

.cloud-button.secondary:hover {
    background: white;
    color: #2c3e50;
}