@import url(/assets/theme/theme.css);

.cta-primary-nav {
  background-color: #3b82f6;
  color: #f5f5f5 !important;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.8 !important;
}

.cta-primary-nav:hover {
  background-color: #2563eb;
}

.page-container {
  max-width: 1200px;
  margin: 100px auto 50px;
  padding: 0 5%;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.sla-container {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.sla-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sla-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sla-icon {
  background-color: rgba(59, 130, 246, 0.15);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sla-icon svg {
  width: 30px;
  height: 30px;
  fill: #3b82f6;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f5f5f5;
}

p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sla-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.highlight {
  color: #3b82f6;
  font-weight: 600;
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(80px);
  z-index: 0;
}

.blob-1 {
  top: -150px;
  right: -100px;
}

.blob-2 {
  bottom: -150px;
  left: -100px;
}

.cta-section {
  text-align: center;
  margin: 80px 0;
}


@media (min-width: 768px){
    .login-main-div{
        display: none;
    }
    .hambrgr-div{
        display: none;
    }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .page-description {
    font-size: 1.125rem;
  }
  
  .sla-container {
    padding: 20px;
  }
  
  .sla-grid {
    grid-template-columns: 1fr;
  }
}