/* Service Group Banner Styles */
.service-group-banner {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .service-group-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .banner-content {
    display: grid;
    grid-template-rows: repeat(2,auto);    gap: 60px;
    align-items: center;
    min-height: 500px;
    margin-left: -100px;
  }
  
  .banner-text {
    color: white;
    margin-bottom: 100px;
  }
  
  .banner-title {

    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: Montserrat;
    font-weight: 800;
    font-size: 3.125rem;
    color:#2160AC ;
    line-height: 1.2;
    letter-spacing: 0;

  }
  
  .banner-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  .banner-cta {
    display: flex;
    gap: 20px;
    width: 35%;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #1e40af;
  }
  
  .btn-filled {
    background: #f97316;
    color: white;
    border-color: #f97316;
  }
  
  .btn-filled:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  }
  
  /* Isometric 3D Graphics */
  .isometric-scene {
    position: relative;
    height: 400px;
    perspective: 1000px;
  }
  
  .laptop {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateY(-45deg);
    animation: float 6s ease-in-out infinite;
  }
  
  .laptop-screen {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 4px 4px 0 0;
    position: relative;
    transform-origin: bottom;
    transform: rotateX(-10deg);
  }
  
  .laptop-base {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 0 0 4px 4px;
    margin-top: -2px;
  }
  
  .server-rack {
    position: absolute;
    width: 40px;
    height: 80px;
    transform-style: preserve-3d;
    animation: float 8s ease-in-out infinite;
  }
  
  .server-1 {
    top: 20%;
    right: 30%;
    transform: rotateX(60deg) rotateY(-30deg);
    animation-delay: -1s;
  }
  
  .server-2 {
    top: 30%;
    right: 15%;
    transform: rotateX(60deg) rotateY(-30deg);
    animation-delay: -2s;
  }
  
  .server-3 {
    top: 50%;
    right: 25%;
    transform: rotateX(60deg) rotateY(-30deg);
    animation-delay: -3s;
  }
  
  .server-4 {
    top: 60%;
    right: 10%;
    transform: rotateX(60deg) rotateY(-30deg);
    animation-delay: -4s;
  }
  
  .server-unit {
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #1e40af, #3730a3);
    margin-bottom: 4px;
    border-radius: 2px;
    position: relative;
  }
  
  .server-unit::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: blink 2s infinite;
  }
  
  .floating-cube {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    transform-style: preserve-3d;
    animation: floatRotate 10s linear infinite;
  }
  
  .cube-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
  }
  
  .cube-2 {
    top: 25%;
    right: 40%;
    animation-delay: -2.5s;
  }
  
  .cube-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: -5s;
  }
  
  .cube-4 {
    bottom: 20%;
    right: 35%;
    animation-delay: -7.5s;
  }
  
  /* Animations */
  @keyframes float {
    0%,
    100% {
      transform: translate(-50%, -50%) rotateX(60deg) rotateY(-45deg) translateY(0px);
    }
    50% {
      transform: translate(-50%, -50%) rotateX(60deg) rotateY(-45deg) translateY(-10px);
    }
  }
  
  @keyframes floatRotate {
    0% {
      transform: translateY(0px) rotateZ(0deg);
    }
    25% {
      transform: translateY(-10px) rotateZ(90deg);
    }
    50% {
      transform: translateY(0px) rotateZ(180deg);
    }
    75% {
      transform: translateY(-10px) rotateZ(270deg);
    }
    100% {
      transform: translateY(0px) rotateZ(360deg);
    }
  }
  
  @keyframes blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0.3;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .banner-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
  
    .banner-title {
      font-size: 2.5rem;
    }
  
    .banner-subtitle {
      font-size: 1.1rem;
    }
  
    .banner-cta {
      justify-content: center;
    }
  
    .isometric-scene {
      height: 300px;
    }
  
    .server-rack {
      width: 30px;
      height: 60px;
    }
  
    .laptop {
      left: 50%;
    }
  }
  
  @media (max-width: 480px) {
    .service-group-banner {
      min-height: 500px;
    }
  
    .banner-title {
      font-size: 2rem;
    }
  
    .banner-cta {
      flex-direction: column;
      align-items: center;
    }
  
    .btn {
      width: 100%;
      max-width: 250px;
      text-align: center;
    }
  }
  