 
/* all styles */
  h2 {
  color: #003857;
  }

/* Hero Section */
.services-hero-section {
  padding: 0px 40px;
  background: linear-gradient(135deg, #e6fafd 0%, #ffffff 100%);
  text-align: center;
  color: #1e1e1e;
}

.services-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #003857;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 720px;
}

/*.services-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #1B91AE, #23D5E0);
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.4);
}

.services-hero-btn:hover {
  background: linear-gradient(to right, #1B91AE, #23D5E0);
  opacity: 0.85; 
}*/

@media (min-width: 768px) {
  .services-hero-title {
    font-size: 44px;
  }

  .services-hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .services-hero-title {
    font-size: 54px;
  }

  .services-hero-subtitle {
    font-size: 22px;
  }
}

/* Intro Section */

.glass-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px;
}

.services-intro-section {
  padding: 0px 40px;
  background: linear-gradient(135deg, #e6fafd 0%, #ffffff 100%);
}

.services-intro-container {
padding-top: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.services-intro-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.services-intro-textblock {
  flex: 1;
  text-align: left;
}

.services-intro-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.services-intro-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  max-width: 640px;
}

.services-intro-image {
  flex: 1;
  max-width: 440px;
}

.services-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (min-width: 1024px) {
  .services-intro-content {
    flex-direction: row;
    align-items: center;
  }

  .services-intro-textblock {
    text-align: left;
  }
}

/* Matrix Cards */

.services-matrix-section {
  padding: 20px 40px;
background: linear-gradient(135deg, #f1faff, #ffffff);
  text-align: center;
}

.services-matrix-container {
  max-width: 1440px;  
margin: 0 auto;
}

.services-matrix-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.services-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .services-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.matrix-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 224, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.2);
  transition: 0.3s ease;
  color: #1e1e1e;
  text-align: left;
}

.matrix-card:hover {
  box-shadow: 0 0 40px rgba(0, 224, 255, 0.5);
  transform: translateY(-5px);
}

.matrix-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003857;
}

.matrix-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.matrix-card a {
  font-weight: 600;
  font-size: 15px;
  color: #23D5E0;
  text-decoration: none;
  position: relative;
}

.matrix-card a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #23D5E0;
  transition: 0.3s;
}

.matrix-card a:hover::after {
  height: 2px;
}

/* Benefits */

.services-why-section {
  padding: 60px 40px;
  background: linear-gradient(135deg, #e6fafd 0%, #ffffff 100%);
}

.services-why-container {
  max-width: 1440px;
  margin: 0 auto;
}

.services-why-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.services-why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  flex: 1;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
  color: #046C8B;
}

.services-why-textblock {
  text-align: center;
  flex: 1;
  max-width: 500px;
}

.services-why-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.services-why-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

@media (min-width: 1024px) {
  .services-why-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .services-why-pills {
    max-width: 60%;
  }

  .services-why-textblock {
    max-width: 40%;
    padding-left: 40px;
  }
}

.services-cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e6fafd 0%, #ffffff 100%);
}

.services-cta-flex {
  max-width: 1440px;
  padding: 0px 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;

  @media (min-width: 768px) {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.services-cta-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
}

.services-cta-button {
  flex-shrink: 0;
}

.neon-button {
  background: linear-gradient(to right, #1B91AE, #23D5E0);
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 32px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(27, 145, 174, 0.6), 0 0 20px rgba(27, 145, 174, 0.3);
}

.neon-button:hover {
  background: linear-gradient(to right, #1B91AE, #23D5E0);
  opacity: 0.85; 
}

.footer__content{
  margin-top: -60px;
}
