 .banner-sec {
        .grid-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: 20s linear infinite gridMove;
            z-index: 1;
        }
        .container {
            z-index: 2;
            position: relative;
        }
        @keyframes gridMove {
            0% {
                transform: perspective(500px) rotateX(60deg) translateY(0);
            }

            100% {
                transform: perspective(500px) rotateX(60deg) translateY(50px);
            }
        }
        .spotlight {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            animation: 4s ease-in-out infinite pulse;
            z-index: 1;
        }

        .spotlight1 {
            top: -200px;
            left: -200px;
            background: radial-gradient(circle, #00308b, transparent);
            animation-delay: 0s;
        }

        .spotlight2 {
            bottom: -200px;
            right: -200px;
            background: radial-gradient(circle, #00308b, transparent);
            animation-delay: 2s;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.1;
                transform: scale(1);
            }

            50% {
                opacity: 0.2;
                transform: scale(1.1);
            }
        }

        span.sub-title {
            padding: 12px 28px;
            background: rgba(0, 48, 139, .1);
            border: 1px solid rgba(0, 48, 139, .3);
            border-radius: 50px;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            animation: 1s ease-out slideDown;
            backdrop-filter: blur(10px);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .feature-icon {
            position: relative;
            align-items: center;
            display: flex;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 48, 139, .05);
            border: 2px solid rgba(0, 48, 139, .2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            justify-content: center;
            font-size: 36px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(0, 48, 139, .2), transparent);
            top: -100%;
            left: 0;
            top: -100%;
            left: 0;
            transition: top 0.4s ease;
        }

        .feature:hover .feature-icon {
            background: rgba(0, 48, 139, .15);
            border-color: rgba(0, 48, 139, .5);
            box-shadow: 0 8px 32px rgba(0, 48, 139, .3), 0 0 20px rgba(0, 48, 139, .2);
            transform: rotateY(180deg);
        }

        .feature:hover .feature-icon::before {
            top: 100%;
        }

        .feature-text {
            color: var(--white);
            font-size: 18px;
            font-weight: 600;
        }

        .description {
            font-size: 18px;
            line-height: 1.8;
            color: #999;
            max-width: 900px;
            margin: 0 auto 20px;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        @media (max-width: 768px) {
            .description {
                font-size: 16px;
                padding: 0 10px;
            }

            span.sub-title {
                padding: unset;
                background: unset;
                border: unset;
            }

            .features {
                gap: 40px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }
    }
    .business-services {
      background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    }

    .services-layout {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 40px;
      align-items: start;
    }

    .services-sidebar {
      background: white;
      border-radius: 20px;
      padding: 10px;
      box-shadow: 0 10px 40px rgba(0, 48, 139, 0.08);
      position: sticky;
      top: 20px;
    }

    .service-tab {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 8px 20px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 15px;
      margin-bottom: 5px;
      position: relative;
      overflow: hidden;
    }

    .service-tab::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 100%;
      background: var(--base-color);
      transform: scaleY(0);
      transition: transform 0.3s;
    }

    .service-tab:hover {
      background: rgba(0, 48, 139, 0.05);
    }

    .service-tab.active {
      background: linear-gradient(135deg, #00308B 0%, #0047CC 100%);
      color: var(--white);
      transform: translateX(5px);
      box-shadow: 0 5px 20px rgba(0, 48, 139, 0.3);
    }

    .service-tab.active::before {
      transform: scaleY(1);
    }

    .service-tab.active .service-tab-icon {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
      transform: scale(1.1);
    }

    .service-tab.active .service-tab-title {
      color: var(--white);
      font-weight: 600;
    }

    .service-tab-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, rgba(0, 48, 139, 0.1) 0%, rgba(0, 71, 204, 0.1) 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .service-tab-title {
      font-size: 16px;
      font-weight: 500;
      color: #2d3748;
      transition: all 0.3s;
      line-height: 1.4;
    }

    .content-area {
      background: var(--white);
      border-radius: 25px;
      padding: 45px;
      box-shadow: 0 10px 40px rgba(0, 48, 139, 0.08);
      position: relative;
      overflow: hidden;
      display: none;
    }

    .content-area.active {
      display: block;
    }

    .content-area::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #00308B 0%, #0047CC 100%);
    }

    .content-header {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .content-description {
      color: #4a5568;
    }

    .content-area .service-btn {
      padding: 10px 20px;
      border: 1px solid var(--base-color);
      border-radius: 50px;
      border-radius: 50px;
      border-bottom: 1px solid var(--base-color) !important;
      padding-bottom: 10px !important;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .feature-item {
      padding: 12px 25px;
      background: linear-gradient(135deg, rgba(0, 48, 139, 0.03) 0%, rgba(0, 71, 204, 0.03) 100%);
      border-radius: 16px;
      border-left: 4px solid var(--base-color);
      transition: all 0.3s;
    }

    .feature-item:hover {
      transform: translateX(5px);
      background: linear-gradient(135deg, rgba(0, 48, 139, 0.06) 0%, rgba(0, 71, 204, 0.06) 100%);
      box-shadow: 0 5px 20px rgba(0, 48, 139, 0.1);
    }

    .feature-item strong {
      color: #00308B;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-item p {
      color: #4a5568;
      font-size: 14px;
      line-height: 1.7;
    }

    @media (max-width: 1024px) {
      .services-layout {
        grid-template-columns: 1fr;
      }

      .services-sidebar {
        position: relative;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
      }

      .content-area {
        padding: 35px 30px;
      }
    }

    @media (max-width: 768px) {
      .services-sidebar {
        display: flex;
        padding-bottom: 25px;
      }

      .content-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }
    }
    .number-section {
      background: #f0f4f8;


      .number-card {
        background: linear-gradient(145deg, #ffffff, #e6eef7);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        box-shadow: 10px 10px 30px #d1d9e6, -10px -10px 30px #ffffff;
        transition: all 0.4s ease-in-out;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.5);
      }

      .number-card:hover {
        transform: translateY(-10px);
        box-shadow: 15px 15px 40px #c8d1de, -15px -15px 40px #ffffff;
      }

      .number-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
        transition: transform 0.6s ease;
        transform: rotate(45deg) scale(0);
      }

      .number-card:hover::before {
        transform: rotate(0deg) scale(1);
      }

      .number-card .vertical-counter {
        font-size: 48px;
        font-weight: 800;
        background: -webkit-linear-gradient(45deg, #00308B, #0047CC);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
        line-height: 1.2;
      }

      .number-card .counter-title {
        font-size: 18px;
        color: #4a5568;
        font-weight: 500;
        line-height: 1.5;
      }

    @media (max-width: 991px) {
        .number-section .number-card {
            padding: 25px;
            border-radius: 16px;
        }

        .number-section .vertical-counter {
            font-size: 40px;
        }

        .number-section .counter-title {
            font-size: 16px;
        }   
    }

    @media (max-width: 576px) {
    .number-section .number-card {
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 5px 5px 20px #d1d9e6, -5px -5px 20px #ffffff;
    }
    .number-section .vertical-counter {
        font-size: 32px;
        margin-bottom: 8px;
    }
    .number-section .counter-title {
        font-size: 15px;
    }
    }
    }
     .expertise-sec {
      background-color: #0c0c1e;

    .services-box-style-02 .card {
      background-color: rgba(10, 25, 47, 0.5);
      border: 1px solid rgba(0, 48, 139, 0.3);
      border-radius: 10px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      backdrop-filter: blur(10px);
    }

    .services-box-style-02 .card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 10px;
      padding: 1px;
      background: linear-gradient(45deg, #00308b, #00bfff);
      -webkit-mask: linear-gradient(var(--white) 0 0) content-box, linear-gradient(var(--white) 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      transition: opacity 0.3s ease-in-out;
      opacity: 0;
    }

    .services-box-style-02 .card-icon {
      font-size: 30px;
      margin-bottom: 20px;
      color: var(--base-color);
      transition: all 0.3s ease-in-out;
      width: max-content;
      padding: 15px;
      background: var(--white);
      border-radius: 50%;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .services-box-style-02 .card-content {
      transition: all 0.3s ease-in-out;
      color: #e2e8f0;
    }

    .services-box-style-02 .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
    }

    .services-box-style-02 .card:hover::before {
      opacity: 1;
    }
  }
    .factors-sec {
      .swiper-wrapper {
        display: flex;
        align-items: stretch;
      }

      .swiper-slide {
        display: flex;
        height: auto !important;
      }

      .card {
        background: #0a0a0a;
        border: 1px solid #1a1a1a;
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.8s ease-out backwards;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
      }

      .card:nth-child(1) {
        animation-delay: 0.1s;
      }

      .card:nth-child(2) {
        animation-delay: 0.2s;
      }

      .card:nth-child(3) {
        animation-delay: 0.3s;
      }

      .card:nth-child(4) {
        animation-delay: 0.4s;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Hover gradient effect */
      .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 48, 139, 0.05), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .card:hover {
        /* transform: translateY(-10px); */
        border-color: var(--base-color);
        box-shadow: 0 20px 60px rgba(0, 48, 139, 0.3);
      }

      .card:hover::before {
        opacity: 1;
      }

      .card:hover .button-icon-change .btn {
        background-color: var(--base-color) !important;
      }

      .card:hover .dark-button-hover {
        background: var(--white) !important;
        color: var(--black) !important;
      }

      .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: #111111;
        border: 1px solid #222222;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
      }

      .card .card-icon i {
        color: #ddd;
        font-size: 30px;
      }

      .card:hover .card-icon {
        background: var(--base-color);
        border-color: var(--base-color);
        transform: scale(1.1) rotate(5deg);
      }

      .card:hover .card-icon i {
        color: var(--white);
      }

      .card-description {
        color: #888888;
        line-height: 1.7;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
      }

      @media (max-width: 768px) {
        .card {
          padding: 30px;
        }
      }
    }
     .icon-with-text-style-07 .feature-box {
      height: 100%;
      border-radius: 0% 20% 0% 20%;
    }
    .border-bottom {
   border-color: rgba(255, 255, 255, 0.1) !important;
}
  .services-benifits-sec {
        background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
        background-size: 40px 40px;
        .handyman-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2px;
                background: #e8e6e6;
                border: 2px solid #e8e6e6;
        }
        .service-item {
            background: var(--white);
            padding: 48px 36px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--base-color);
            transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }
        .service-item:hover::before {
            left: 0;
        }
        .service-content {
            position: relative;
            z-index: 1;
        }
        .service-number {
            font-size: 3rem;
            font-weight: 800;
            color: #f0f0f0;
            margin-bottom: 20px;
            transition: all 0.5s ease;
        }
        .service-item:hover .service-number {
            color: var(--white);
            transform: scale(1.1);
        }
        .service-icon-wrapper {
            width: 60px;
            height: 60px;
            border: 2px solid  var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.5s ease;
        }
        .service-item:hover .service-icon-wrapper {
            border-color: var(--white);
            transform: rotate(90deg);
        }
        .service-icon-wrapper i {
            font-size: 28px;
            color: var(--black);
            transition: all 0.5s ease;
        }
        .service-item:hover .service-icon-wrapper i {
            transform: rotate(-90deg);
            color: var(--white);
        }
        .service-title {
            font-family: 'Sora', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 16px;
            transition: color 0.5s ease;
        }
        .service-item:hover .service-title {
            color: var(--white);
        }
        .service-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666666;
            transition: color 0.5s ease;
        }
        .service-item:hover .service-text {
            color: #cccccc;
        }
    }