/* Cloud Solutions 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;
  }
  
  /* Cloud Providers Section */
  .cloud-providers-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .tabs-container {
    margin-top: 50px;
  }
  
  .tabs-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .tab-btn {
    padding: 15px 30px;
    background-color: white;
    border: none;
    border-radius: 30px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .tab-btn i {
    font-size: 1.2rem;
  }
  
  .tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }
  
  .tab-btn.active {
    background-color: #0066cc;
    color: white;
  }
  
  .tabs-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .tab-pane {
    display: none;
    padding: 40px;
  }
  
  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .tab-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .tab-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .tab-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .tab-header h3 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 600;
    color: #333;
  }
  
  .tab-body p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* Cloud Services Grid */
  .cloud-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .service-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;
  }
  
  .service-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;
  }
  
  .service-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: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Cloud Comparison Section */
  .cloud-comparison-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px;
    overflow-x: auto;
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .table-header {
    display: flex;
    background-color: #0066cc;
    color: white;
  }
  
  .header-cell {
    padding: 20px;
    font-weight: 600;
    text-align: center;
    flex: 1;
  }
  
  .feature-cell {
    background-color: #004080;
    text-align: left;
    min-width: 200px;
  }
  
  .aws-cell,
  .azure-cell,
  .gcp-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .aws-cell i,
  .azure-cell i,
  .gcp-cell i {
    font-size: 1.5rem;
  }
  
  .table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
  }
  
  .table-row:last-child {
    border-bottom: none;
  }
  
  .table-row:hover {
    background-color: #f8f9fa;
  }
  
  .table-row div {
    padding: 15px 20px;
    flex: 1;
    text-align: center;
  }
  
  .table-row .feature-cell {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: left;
  }
  
  .comparison-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .summary-card {
    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: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .summary-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: -1;
  }
  
  .aws-summary::before {
    background: linear-gradient(90deg, #ff9900, #ffb700);
  }
  
  .azure-summary::before {
    background: linear-gradient(90deg, #0078d4, #00a2ed);
  }
  
  .gcp-summary::before {
    background: linear-gradient(90deg, #4285f4, #34a853);
  }
  
  .summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .summary-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;
  }
  
  .aws-summary .summary-icon {
    background-color: rgba(255, 153, 0, 0.1);
  }
  
  .aws-summary .summary-icon i {
    color: #ff9900;
  }
  
  .azure-summary .summary-icon {
    background-color: rgba(0, 120, 212, 0.1);
  }
  
  .azure-summary .summary-icon i {
    color: #0078d4;
  }
  
  .gcp-summary .summary-icon {
    background-color: rgba(66, 133, 244, 0.1);
  }
  
  .gcp-summary .summary-icon i {
    color: #4285f4;
  }
  
  .summary-icon i {
    font-size: 30px;
  }
  
  .summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .summary-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Implementation Roadmap Section */
  .implementation-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .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: linear-gradient(to bottom, #0066cc, #ff9900);
    transform: translateX(-50%);
  }
  
  .roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
  }
  
  .roadmap-item:nth-child(even) {
    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;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .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;
  }
  
  /* 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) {
    .cloud-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  }
  
  @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;
    }
  
    .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%;
    }
  
    .tabs-navigation {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
    }
  
    .tab-btn {
      white-space: nowrap;
      padding: 12px 20px;
    }
  
    .tab-header {
      flex-direction: column;
      text-align: center;
    }
  
    .tab-icon {
      margin: 0 auto 15px;
    }
  
    .cloud-services-grid {
      grid-template-columns: 1fr;
    }
  
    .comparison-summary {
      flex-direction: column;
      align-items: center;
    }
  
    .summary-card {
      max-width: 100%;
    }
  
    .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;
    }
  
    .tab-pane {
      padding: 20px;
    }
  }
