
:root {
    --primary-color: #007bff;
    --primary-blue: #4a7aff;
    --primary-purple: #a855f7;
    --secondary-color: #00d4ff;
    --gradient-color: linear-gradient(45deg, #D16BA5, #86A8E7, #5FFBF1);
    --text-color: #ffffff;
    --bg-color: #0a0a1f;
    --black: #000000;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1); 
    --glass-blur: blur(10px);
    --navbar-height: 80px;
    --max-width: 1468px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    background: 
    radial-gradient(circle at top, #22e30d 0%, transparent 12%),
    /* radial-gradient(circle at bottom, var(--primary-blue) 0%, transparent 12%), */
    var(--black);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
  }
  


  .sr-bx-section {
    position: relative;
    margin: 80px auto;
    overflow: hidden;
    min-height: 700px;
  }

  .sr-bx-container {
    max-width: 1100px;
    width: 98%;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    position: relative;
  }

  .sr-bx-box {
    width: 250px;
    height: 350px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    border-image: linear-gradient(-45deg, #00ff00, #ffffff) 1;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: sr-bx-pop 0.5s ease forwards;
    overflow: hidden;
  }
  
  .sr-bx-box:nth-child(1) { margin-top: 50px; animation-delay: 0.1s; }
  .sr-bx-box:nth-child(2) { margin-top: 180px; animation-delay: 0.2s; }
  .sr-bx-box:nth-child(3) { margin-top: 20px; animation-delay: 0.3s; }
  .sr-bx-box:nth-child(4) { margin-top: 120px; animation-delay: 0.4s; }
  
  .sr-bx-box:hover {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%
    ),
    rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
  }
  
  .sr-bx-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #fff, #22e30d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .sr-bx-icon::before {
    content: '★';
    color: white;
    font-size: 20px;
  }
  
  .sr-bx-box h2 {
    font-size: 1.5rem;
    color: white;
    margin: 0 0 10px;
    font-weight: 600;
  }
  
  .sr-bx-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
  }
  
  @keyframes sr-bx-pop {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 1024px) {
    .sr-bx-box {
      width: 250px;
      height: 350px;
    }
    .sr-bx-box:nth-child(3), .sr-bx-box:nth-child(4) {
      margin-top: 0;
    }
  }
  
  @media (max-width: 768px) {
    .sr-bx-box {
      width: 100%;
      margin-top: 0 !important;
    }


    body {
        background: 
        radial-gradient(circle at top, #22e30d 0%, transparent 8%),
        /* radial-gradient(circle at bottom, var(--primary-blue) 0%, transparent 12%), */
        var(--black);
 
      }
  }









  .sr-services-container {
    max-width: 1268px;
    margin: 100px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
.srvc-disc-txt{
    text-align: center;
}
.srvc-disc-txt p{
    display: block;
    color: #ff6f61;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.srvc-disc-txt h3{
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
}
  .sr-service-box {
    width: calc(90% - 15px);
    min-height: 600px;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: sr-service-pop 0.5s ease forwards;
    overflow: hidden;
  }

  .sr-service-box:nth-child(1) { animation-delay: 0.1s; }
  .sr-service-box:nth-child(2) { animation-delay: 0.2s; }
  .sr-service-box:nth-child(3) { animation-delay: 0.3s; }
  .sr-service-box:nth-child(4) { animation-delay: 0.4s; }

  /* .sr-service-box:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    rgba(255, 255, 255, 0.1);
  } */

  .sr-service-box h2 {
    font-size: 2rem;
    color: white;
    margin: 0 0 15px;
    font-weight: 700;
    text-align: left;
  }

  .sr-service-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px;
    line-height: 1.6;
    text-align: left;
  }

  .sr-image-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .sr-image-box {
    width: 50%;
    max-width: 450px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
  }

  .sr-image-box img {
    width: 100%;
    max-height: 350px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }



  .sr-bottom-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .sr-track-record {
    width: 50%;
  }

  .sr-track-record table {
    width: 100%;
    border-collapse: collapse;
    color: white;
  }

  .sr-track-record th, .sr-track-record td {
    padding: 10px;
    text-align: left;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sr-track-record th {
    font-weight: 600;
    color: #4ecdc4;
  }

  .sr-buttons-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .sr-feature-btn {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
    transition: background 0.3s ease;
  }

  .sr-get-quote-btn {
    display: inline-block;
    padding: 12px 40px;
    background: var(--gradient-color);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sr-get-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  @keyframes sr-service-pop {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1024px) {
    .sr-service-box {
      width: 100%;
    }
    .sr-image-container {
      flex-direction: column;
      align-items: center;
    }
    .sr-image-box {
      width: 100%;
    }
    .sr-bottom-container {
      flex-direction: column;
    }
    .sr-track-record, .sr-buttons-container {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .sr-service-box h2 {
      font-size: 1.8rem;
    }
    .sr-service-box p {
      font-size: 1rem;
    }
    .sr-track-record th, .sr-track-record td {
      font-size: 0.85rem;
    }
  }



  .sr-service-box {
    opacity: 0;
    animation: slideUp 0.5s ease-out forwards;
    animation-play-state: paused;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Assuming sr-bx-box has its own animation defined elsewhere */
  .sr-bx-box {
    animation-play-state: paused;
  }