/* Wireless & Structured Cabling 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;
  }
  
  /* Services Tabs Section */
  .services-tabs-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);
  }
  
  .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;
  }
  
  /* Cabling Components */
  .cabling-components,
  .wireless-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 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;
  }
  
  .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;
  }
  
  /* Cabling Types & Wireless Standards */
  .cabling-types,
  .wireless-standards {
    margin-top: 50px;
  }
  
  .cabling-types h4,
  .wireless-standards h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-weight: 600;
  }
  
  .types-grid,
  .standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .type-item,
  .standard-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .type-item:hover,
  .standard-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .type-icon,
  .standard-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;
  }
  
  .type-icon i,
  .standard-icon i {
    font-size: 25px;
    color: #0066cc;
  }
  
  .type-item h5,
  .standard-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
  }
  
  .type-item p,
  .standard-item p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Integration Benefits */
  .integration-benefits {
    margin-bottom: 50px;
  }
  
  .integration-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-weight: 600;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  
  .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .benefit-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;
  }
  
  .benefit-icon i {
    font-size: 25px;
    color: #0066cc;
  }
  
  .benefit-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
  }
  
  .benefit-item p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  /* Case Study */
  .case-study {
    margin-top: 50px;
  }
  
  .case-study h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    font-weight: 600;
  }
  
  .case-study-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .case-study-image {
    flex: 1;
    min-width: 300px;
  }
  
  .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .case-study-text {
    flex: 2;
    padding: 30px;
    min-width: 300px;
  }
  
  .case-study-text h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .challenge {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ff9900;
    margin-bottom: 20px;
  }
  
  .solution h6,
  .results h6 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .solution ul,
  .results ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .solution ul li,
  .results ul li {
    margin-bottom: 10px;
    color: #6c757d;
  }
  
  .results ul li {
    color: #0066cc;
    font-weight: 500;
  }
  
  /* Implementation Process Section */
  .implementation-section {
    padding: 80px 0;
    background-color: white;
  }
  
  .implementation-container {
    margin-top: 50px;
  }
  
  .implementation-diagram {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto 50px;
    max-width: 1000px;
  }
  
  .diagram-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;
  }
  
  .implementation-phases {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .phase {
    position: absolute;
    width: 200px;
    text-align: center;
  }
  
  .phase[data-position="phase-1"] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .phase[data-position="phase-2"] {
    top: 30%;
    right: 0;
  }
  
  .phase[data-position="phase-3"] {
    bottom: 0;
    right: 20%;
  }
  
  .phase[data-position="phase-4"] {
    bottom: 0;
    left: 20%;
  }
  
  .phase[data-position="phase-5"] {
    top: 30%;
    left: 0;
  }
  
  .phase-number {
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .phase-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .phase:hover .phase-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  .phase-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
  }
  
  .phase-content ul {
    padding-left: 20px;
    margin-bottom: 0;
    text-align: left;
  }
  
  .phase-content ul li {
    margin-bottom: 5px;
    color: #6c757d;
    font-size: 0.9rem;
  }
  
  .implementation-details {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .detail-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;
  }
  
  .detail-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
  }
  
  .detail-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .benefits-container {
    margin-top: 50px;
  }
  
  .benefits-group {
    margin-bottom: 50px;
  }
  
  .benefits-group h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    font-weight: 600;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .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-card .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-card .benefit-icon i {
    font-size: 30px;
    color: #0066cc;
  }
  
  .benefit-card h4 {
    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) {
    .implementation-diagram {
      height: auto;
    }
  
    .phase {
      position: static;
      width: 100%;
      max-width: 500px;
      margin: 0 auto 30px;
      transform: none !important;
    }
  
    .diagram-center {
      position: static;
      transform: none;
      margin: 0 auto 40px;
    }
  }
  
  @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;
    }
  
    .tab-pane {
      padding: 30px 20px;
    }
  
    .detail-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  
  @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;
    }
  
    .cabling-components,
    .wireless-components {
      grid-template-columns: 1fr;
    }
  
    .types-grid,
    .standards-grid,
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .case-study-content {
      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;
    }
  
    .tab-header h3 {
      font-size: 1.5rem;
    }
  
    .benefits-group h3 {
      font-size: 1.5rem;
    }
  }
