/* Managed Services Page Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
  }
  
  .service-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .service-hero-content {
    flex: 1;
    padding-right: 30px;
  }
  
  .service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
  }
  
  .service-hero-content .underline {
    height: 4px;
    width: 70px;
    background-color: #ff9900;
    margin: 0 0 20px;
    position: relative;
  }
  
  .service-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
  }
  
  .service-hero-image {
    flex: 1;
    text-align: right;
    position: relative;
    max-width: 50%;
  }
  
  .service-hero-image img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .service-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s infinite ease-in-out;
  }
  
  .service-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .service-icon:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
  }
  
  .service-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .service-icon:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
  }
  
  .service-icon:nth-child(5) {
    top: 10%;
    right: 30%;
    animation-delay: 2s;
  }
  
  .service-icon i {
    font-size: 20px;
    color: #0066cc;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  .wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
  }
  
  .wave-container svg {
    display: block;
  }
  
  /* Intro Section */
  .intro-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
  }
  
  .emoji {
    font-size: 1.8rem;
    margin-left: 10px;
    display: inline-block;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .intro-content p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .stat-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  
  .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
  
  .stat-icon i {
    font-size: 25px;
    color: #0066cc;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .stat-box p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  /* Components Section */
  .components-section {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  .components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .component-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .card-header {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .card-icon i {
    font-size: 25px;
    color: white;
  }
  
  .card-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .card-body p {
    margin-bottom: 20px;
    color: #6c757d;
  }
  
  .card-body ul {
    padding-left: 0;
    margin-top: auto;
  }
  
  .card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .card-body ul li i {
    color: #0066cc;
    margin-top: 5px;
  }
  
  .card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .component-card.hover .card-hover {
    opacity: 1;
    pointer-events: auto;
  }
  
  .hover-content {
    color: white;
    text-align: center;
    padding: 30px;
  }
  
  .hover-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .hover-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background-color: white;
    color: #0066cc;
  }
  
  /* Diagram Section */
  .diagram-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .diagram-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .service-model-diagram {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 50px auto;
  }
  
  .model-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }
  
  .center-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
  }
  
  .center-circle i {
    font-size: 40px;
    margin-bottom: 10px;
  }
  
  .center-circle span {
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .model-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(0, 102, 204, 0.3);
    border-radius: 50%;
  }
  
  .layer-1 {
    width: 350px;
    height: 350px;
  }
  
  .layer-2 {
    width: 550px;
    height: 550px;
  }
  
  .layer-item {
    position: absolute;
    width: 100px;
    text-align: center;
  }
  
  .layer-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 10px;
    transition: all 0.3s ease;
  }
  
  .layer-item:hover .layer-icon {
    background-color: #0066cc;
  }
  
  .layer-icon i {
    font-size: 30px;
    color: #0066cc;
    transition: all 0.3s ease;
  }
  
  .layer-item:hover .layer-icon i {
    color: white;
  }
  
  .layer-item span {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
  }
  
  /* Position layer-1 items */
  .layer-1 [data-position="top"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .layer-1 [data-position="right"] {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  
  .layer-1 [data-position="bottom"] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .layer-1 [data-position="left"] {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  
  /* Position layer-2 items */
  .layer-2 [data-position="top-left"] {
    top: 15%;
    left: 15%;
  }
  
  .layer-2 [data-position="top-right"] {
    top: 15%;
    right: 15%;
  }
  
  .layer-2 [data-position="right-top"] {
    top: 35%;
    right: 5%;
  }
  
  .layer-2 [data-position="right-bottom"] {
    bottom: 35%;
    right: 5%;
  }
  
  .layer-2 [data-position="bottom-left"] {
    bottom: 15%;
    left: 15%;
  }
  
  .layer-2 [data-position="bottom-right"] {
    bottom: 15%;
    right: 15%;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #eee;
  }
  
  .benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066cc, #ff9900);
    z-index: -1;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .benefit-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Roadmap Section */
  .roadmap-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .roadmap-container {
    max-width: 1000px;
    margin: 50px auto 0;
  }
  
  .roadmap-timeline {
    position: relative;
    padding: 30px 0;
  }
  
  .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0066cc;
    transform: translateX(-50%);
  }
  
  .roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
  }
  
  .roadmap-item:nth-child(odd) {
    flex-direction: row-reverse;
  }
  
  .roadmap-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin: 0 30px;
    flex-shrink: 0;
  }
  
  .roadmap-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .roadmap-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff9900;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    top: -5px;
    right: -5px;
  }
  
  .roadmap-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: calc(50% - 80px);
    transition: all 0.3s ease;
  }
  
  .roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .roadmap-content p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .roadmap-content ul {
    padding-left: 20px;
    margin-bottom: 0;
  }
  
  .roadmap-content ul li {
    color: #6c757d;
    margin-bottom: 5px;
  }
  
  /* SLA Section */
  .sla-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .sla-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .sla-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
  }
  
  .sla-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .sla-header {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .sla-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
  
  .sla-icon i {
    font-size: 25px;
    color: white;
  }
  
  .sla-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .sla-body {
    padding: 20px;
  }
  
  .sla-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .sla-item:last-child {
    border-bottom: none;
  }
  
  .sla-priority,
  .sla-service {
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .sla-priority.critical {
    background-color: #ff4d4d;
    color: white;
  }
  
  .sla-priority.high {
    background-color: #ff9900;
    color: white;
  }
  
  .sla-priority.medium {
    background-color: #ffcc00;
    color: #333;
  }
  
  .sla-priority.low {
    background-color: #4caf50;
    color: white;
  }
  
  .sla-service {
    background-color: #0066cc;
    color: white;
  }
  
  .sla-time,
  .sla-availability {
    font-weight: 700;
    color: #333;
  }
  
  /* Case Studies Section */
  .case-studies-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .case-studies-container {
    margin-top: 50px;
  }
  
  .case-study {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .case-study-image {
    flex: 1;
    min-width: 300px;
  }
  
  .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .case-study-content {
    flex: 2;
    padding: 30px;
    min-width: 300px;
  }
  
  .case-study-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
  }
  
  .case-study-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 15px;
  }
  
  .case-study-content p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* CTA Section Modifications */
  .cta {
    background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
    padding: 80px 0;
  }
  
  .cta h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .cta .btn-primary {
    background-color: white;
    color: #0066cc;
    font-weight: 600;
  }
  
  .cta .btn-primary:hover {
    background-color: #f8f9fa;
    color: #004080;
  }
  
  .cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
  }
  
  .cta .btn-secondary:hover {
    background-color: white;
    color: #0066cc;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .model-layer {
      display: none;
    }
  
    .service-model-diagram {
      height: auto;
      text-align: center;
    }
  
    .center-circle {
      position: static;
      margin: 0 auto 40px;
      transform: none;
    }
  }
  
  @media (max-width: 992px) {
    .service-hero-content h1 {
      font-size: 2.5rem;
    }
  
    .service-hero .container {
      flex-direction: column;
    }
  
    .service-hero-content {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
    }
  
    .service-hero-content .underline {
      margin: 0 auto 20px;
    }
  
    .service-hero-content p {
      margin: 0 auto 30px;
    }
  
    .service-hero-image {
      max-width: 100%;
    }
  
    .stats-container {
      gap: 15px;
    }
  
    .components-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  
    .timeline-line {
      left: 40px;
    }
  
    .roadmap-item {
      flex-direction: row !important;
    }
  
    .roadmap-content {
      max-width: calc(100% - 150px);
    }
  }
  
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      align-items: center;
    }
  
    .stat-box {
      max-width: 100%;
    }
  
    .components-grid {
      grid-template-columns: 1fr;
    }
  
    .benefits-container {
      grid-template-columns: 1fr;
    }
  
    .sla-container {
      flex-direction: column;
      align-items: center;
    }
  
    .sla-card {
      max-width: 100%;
    }
  
    .case-study {
      flex-direction: column;
    }
  
    .case-study-image {
      min-height: 250px;
    }
  
    .cta .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .cta .btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 576px) {
    .service-hero-content h1 {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .roadmap-icon {
      width: 60px;
      height: 60px;
      margin: 0 15px;
    }
  
    .roadmap-icon i {
      font-size: 24px;
    }
  
    .roadmap-content {
      padding: 20px;
      max-width: calc(100% - 100px);
    }
  
    .roadmap-content h3 {
      font-size: 1.3rem;
    }
  
    .card-header h3 {
      font-size: 1.1rem;
    }
  }
