/* Start custom CSS for text-editor, class: .elementor-element-d4f210b *//* Managed NOC Services Page - Custom Styles */

/* Global Styles */
:root {
  --noc-primary: #005a9e;
  --noc-secondary: #00a0e3;
  --noc-accent: #4cb050;
  --noc-dark: #2c3e50;
  --noc-light: #f5f9fd;
  --noc-gray: #e9ecef;
  --noc-text: #333333;
  --noc-border-radius: 6px;
  --noc-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --noc-transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
body {
  font-family: 'Arial', sans-serif;
  color: var(--noc-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif;
  color: var(--noc-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--noc-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.noc-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--noc-border-radius);
  transition: var(--noc-transition);
  cursor: pointer;
}

.noc-button.primary {
  background-color: var(--noc-primary);
  color: white;
  border: 2px solid var(--noc-primary);
}

.noc-button.primary:hover {
  background-color: #004b84;
  border-color: #004b84;
  transform: translateY(-2px);
}

.noc-button.secondary {
  background-color: transparent;
  color: var(--noc-primary);
  border: 2px solid var(--noc-primary);
}

.noc-button.secondary:hover {
  background-color: rgba(0, 90, 158, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.noc-hero-section {
  background: linear-gradient(135deg, var(--noc-primary), #002b49);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.noc-hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://placeholder.com/network-pattern.jpg');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.noc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.noc-hero-section h1 {
  color: white;
  margin-bottom: 15px;
}

.noc-hero-section h2 {
  color: var(--noc-secondary);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}

.noc-hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 0;
}

/* Intro Section */
.noc-intro-section {
  padding: 80px 0;
  background-color: white;
}

.noc-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.noc-intro-content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.noc-intro-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.noc-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.noc-stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--noc-light);
  border-radius: var(--noc-border-radius);
  box-shadow: var(--noc-box-shadow);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--noc-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--noc-text);
}

/* Process Section */
.noc-process-section {
  padding: 80px 0;
  background-color: var(--noc-light);
}

.process-steps {
  position: relative;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background-color: var(--noc-primary);
  z-index: 1;
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--noc-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-right: 30px;
}

.step-content {
  flex: 1;
  padding-top: 5px;
}

.step-content h3 {
  margin-bottom: 15px;
}

/* Benefits Section */
.noc-benefits-section {
  padding: 80px 0;
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--noc-light);
  border-radius: var(--noc-border-radius);
  padding: 30px;
  box-shadow: var(--noc-box-shadow);
  transition: var(--noc-transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  height: 70px;
  width: 70px;
  background-color: var(--noc-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 30px;
}

/* Technology Section */
.noc-technology-section {
  padding: 80px 0;
  background-color: var(--noc-light);
}

.noc-technology-content {
  max-width: 900px;
  margin: 0 auto;
}

.technology-item {
  margin-bottom: 40px;
}

.technology-item:last-child {
  margin-bottom: 0;
}

.technology-item h3 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.technology-item h3:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--noc-secondary);
  border-radius: 50%;
}

/* Success Stories Section */
.noc-success-section {
  padding: 80px 0;
  background-color: white;
}

.success-stories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.success-story {
  background-color: var(--noc-light);
  border-radius: var(--noc-border-radius);
  overflow: hidden;
  box-shadow: var(--noc-box-shadow);
  transition: var(--noc-/* End custom CSS */