/* Modern styling for the Azure section with white theme */
.azure-header-section {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: transparent; /* Transparent background */
  color: #2c3e50; /* Dark text for white background */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  
}

.azure-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.azure-text-content {
  flex: 1;
}

.azure-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  color: #0078d4; /* Azure blue for title */
}

.azure-title span {
  color: #0063b1; /* Darker blue for span */
  font-weight: 800;
}

.azure-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #4a5568; /* Slightly lighter than main text */
}

.azure-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.azure-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 120, 212, 0.08); /* Very light Azure blue */
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  color: #2c3e50;
}

.azure-feature-item svg {
  stroke: #0078d4; /* Azure blue for icons */
}

.azure-feature-item:hover {
  background-color: rgba(0, 120, 212, 0.15);
  transform: translateY(-3px);
}

.azure-image-container {
  flex: 1;
  position: relative;
  height: 360px;
  
}

.azure-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  margin-right: 10px;
}

.azure-cta {
  display: inline-block;
  background-color: #0078d4; /* Azure blue for button */
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.azure-cta:hover {
  background-color: #0063b1; /* Darker Azure blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 120, 212, 0.3);
}

.background-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Your background animation will go here */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .azure-content-wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .azure-image-container {
    height: 240px;
    width: 100%;
  }
  
  .azure-title {
    font-size: 1.8rem;
  }
}






/* Section2 
 */
     /* Modern styling with transparent background */
     .azure-benefits-section {
      font-family: 'Segoe UI', Arial, sans-serif;
      background: transparent;
      color: #2c3e50;
      padding: 40px 0;
      position: relative;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 60px;
      color: #0078d4;
      position: relative;
    }
    
    .section-title strong {
      color: #0063b1;
      font-weight: 800;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #0078d4;
      margin: 20px auto 0;
      border-radius: 2px;
    }
    
    .benefits-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .benefit-item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
      opacity: 1;
      transform: translateX(10px);
    }
    
    .benefit-icon {
      flex: 0 0 80px;
      height: 80px;
      background: rgba(0, 120, 212, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
      border: 2px solid rgba(0, 120, 212, 0.3);
    }
    
    .benefit-icon svg {
      stroke: #0078d4;
      width: 40px;
      height: 40px;
      transition: transform 0.3s ease;
    }
    
    .benefit-item:hover .benefit-icon {
      background: rgba(0, 120, 212, 0.2);
      box-shadow: 0 10px 20px rgba(0, 120, 212, 0.1);
    }
    
    .benefit-item:hover .benefit-icon svg {
      transform: scale(1.1);
    }
    
    .benefit-content {
      flex: 1;
    }
    
    .benefit-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #0078d4;
      display: flex;
      align-items: center;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .benefit-title strong {
      color: #0063b1;
      margin-left: 8px;
    }
    
    .benefit-description {
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 700px;
    }
    
    .benefit-features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 15px;
    }
    
    .feature-tag {
      background: rgba(0, 120, 212, 0.08);
      border: 1px solid rgba(0, 120, 212, 0.2);
      border-radius: 20px;
      padding: 8px 16px;
      font-size: 0.9rem;
      color: #0078d4;
      font-weight: 500;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .feature-tag:hover {
      background: rgba(0, 120, 212, 0.15);
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0, 120, 212, 0.15);
    }
    
    .benefit-item::after {
      content: '';
      position: absolute;
      left: 40px;
      top: 80px;
      bottom: -40px;
      width: 2px;
      background: rgba(0, 120, 212, 0.2);
      z-index: 0;
    }
    
    .benefit-item:last-child::after {
      display: none;
    }
    
    @media (max-width: 768px) {
      .benefit-item {
        flex-direction: column;
        padding: 0 20px;
      }
      
      .benefit-icon {
        margin-bottom: 20px;
      }
      
      .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
        padding: 0 20px;
      }
      
      .benefit-item::after {
        display: none;
      }
    }