      .banner-slide {
          position: relative;
          min-height: 90vh;
          overflow: hidden;
      }

      /* Video Background */
      .banner-video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          z-index: -2;
      }

      /* Dark Overlay */
      .banner-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.55);
          z-index: -1;
      }

      /* TEXT START POSITION */
      /* TEXT START POSITION */
      .slide-up {
          opacity: 0;
          transform: translateY(80px);
          transition: all 1.6s ease;
      }

      /* ACTIVE SLIDE TEXT */
      .swiper-slide-active .slide-up {
          opacity: 1;
          transform: translateY(0);
      }

      /* Delay for stagger animation */
      .delay-1 {
          transition-delay: 0.6s;
      }

      .delay-2 {
          transition-delay: 1.2s;
      }

      /* Banner smooth side motion */
      .banner-slide {
          background-size: cover;
          background-position: center;
          min-height: 700px;
          transition: transform 6s ease;
      }

      /* active slide zoom + side feel */
      .swiper-slide-active {
          transform: scale(1.05);
      }

      /* ===== Banner ===== */

      .banner {
          position: relative;
      }

      /* Slide */
      .banner-slide {
          min-height: 700px;
          background-size: cover;
          background-position: center;
          position: relative;
      }

      /* Overlay */
      .banner-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.45);
          z-index: 1;
      }

      /* Content always above */
      .swipeinner {
          position: relative;
          z-index: 5;
      }

      /* Text Style */
      .banner h1 {
          color: #fff;
          font-size: 52px;
          font-weight: 700;
      }

      .banner h6 {
          color: #fff;
          margin-top: 15px;
          font-size: 18px;
      }

      /* Buttons */
      .btn-round {
          border-radius: 50px;
          padding: 12px 28px;
      }

      /* Arrow color */
      .swiper-button-next,
      .swiper-button-prev {
          color: #fff;
      }

      @media(max-width:768px) {
          .banner-slide {
              min-height: 500px;
          }

          .banner h1 {
              font-size: 32px;
          }
      }
      /* Link Reset */
      .service-link {
          text-decoration: none;
          color: inherit;
      }

      /* CARD DESIGN */
      .service-card {
          background: #ffffff;
          border-radius: 20px;
          padding: 45px 30px;
          transition: all .45s ease;
          position: relative;
          overflow: hidden;
          border: 1px solid rgba(0, 0, 0, 0.05);

          /* Premium Soft Shadow */
          box-shadow:
              0 5px 15px rgba(0, 0, 0, 0.05),
              0 15px 35px rgba(0, 0, 0, 0.06);
      }

      /* Gradient Glow Background */
      .service-card::after {
          content: "";
          position: absolute;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle,
                  rgba(37, 99, 235, 0.15),
                  transparent 60%);
          top: -100%;
          left: -100%;
          opacity: 0;
          transition: .6s;
      }

      /* HOVER MAIN EFFECT */
      .service-card:hover {
          transform: translateY(-15px) scale(1.02);
          box-shadow:
              0 15px 35px rgba(37, 99, 235, 0.15),
              0 25px 60px rgba(0, 0, 0, 0.15);
      }

      .service-card:hover::after {
          opacity: 1;
          top: -50%;
          left: -50%;
      }

      /* ICON STYLE */
      .service-icon {
          width: 80px;
          height: 80px;
          border-radius: 20px;
          margin: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 32px;
          color: #fff;
          background: linear-gradient(135deg, #2563eb, #06b6d4);
          box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
          transition: .5s;
      }

      /* ICON ANIMATION */
      .service-card:hover .service-icon {
          transform: rotateY(360deg) scale(1.1);
      }

      /* TITLE */
      .service-card h5 {
          margin-top: 18px;
          font-weight: 600;
          transition: .3s;
      }

      .service-card:hover h5 {
          color: #2563eb;
      }

      /* TEXT */
      .service-card p {
          font-size: 14px;
          line-height: 1.7;
          color: #6c757d;
      }

      /* Bottom Line Animation */
      .service-card::before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0%;
          height: 3px;
          background: linear-gradient(90deg, #2563eb, #06b6d4);
          transition: .4s;
          transform: translateX(-50%);
      }

      .service-card:hover::before {
          width: 70%;
      }
      .popup-overlay {
          position: fixed;
          top: 0; left: 0;
          width: 100%; height: 100%;
          background: rgba(0,0,0,.72);
          display: none;
          justify-content: center;
          align-items: center;
          z-index: 9999;
          padding: 15px;
          backdrop-filter: blur(3px);
      }

      .popup-container {
          background: #fff;
          width: 880px;
          max-width: 96%;
          border-radius: 20px;
          overflow: hidden;
          position: relative;
          animation: popupFade 0.35s cubic-bezier(.34,1.56,.64,1);
          box-shadow: 0 25px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.06);
          display: flex;
          flex-direction: column;
      }

      .popup-close {
          position: absolute;
          top: 12px; right: 12px;
          background: #fff;
          color: #374151;
          border: 1.5px solid #e5e7eb;
          border-radius: 50%;
          width: 34px; height: 34px;
          font-size: 20px;
          cursor: pointer;
          font-weight: bold;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 10;
          transition: background .2s, border-color .2s, color .2s;
          box-shadow: 0 1px 6px rgba(0,0,0,.12);
          line-height: 1;
      }

      .popup-close:hover {
          background: #fee2e2;
          border-color: #fca5a5;
          color: #dc2626;
      }

      .popup-content {
          display: flex;
          flex-wrap: wrap;
      }

      /* ── Left info panel ── */
      .popup-info {
          flex: 1 1 38%;
          background: linear-gradient(145deg, #0a1628 0%, #0d6efd 65%, #6610f2 100%);
          color: #fff;
          padding: 0;
          display: flex;
          flex-direction: column;
          justify-content: center;
          position: relative;
          overflow: hidden;
      }

      .popup-info-inner {
          position: relative;
          z-index: 1;
          padding: 40px 28px;
      }

      .popup-deco-circle-1 {
          position: absolute;
          top: -70px; right: -70px;
          width: 220px; height: 220px;
          border-radius: 50%;
          background: rgba(255,255,255,.07);
          pointer-events: none;
      }

      .popup-deco-circle-2 {
          position: absolute;
          bottom: -80px; left: -50px;
          width: 200px; height: 200px;
          border-radius: 50%;
          background: rgba(255,255,255,.05);
          pointer-events: none;
      }

      .popup-brand-icon {
          width: 48px; height: 48px;
          border-radius: 12px;
          background: rgba(255,255,255,.15);
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 14px;
          color: #fff;
      }

      .popup-info-tag {
          display: inline-flex;
          padding: 3px 12px;
          border-radius: 999px;
          background: rgba(255,255,255,.18);
          border: 1px solid rgba(255,255,255,.25);
          color: #fff;
          font-size: 11px;
          font-weight: 700;
          letter-spacing: .07em;
          text-transform: uppercase;
          margin-bottom: 14px;
      }

      .popup-info-heading {
          font-size: 22px;
          font-weight: 800;
          line-height: 1.3;
          margin-bottom: 10px;
          color: #fff;
      }

      .popup-info-desc {
          font-size: 13px;
          color: rgba(255,255,255,.76);
          line-height: 1.6;
          margin-bottom: 20px;
      }

      .popup-trust-stats {
          display: flex;
          align-items: center;
          background: rgba(255,255,255,.1);
          border: 1px solid rgba(255,255,255,.15);
          border-radius: 12px;
          padding: 12px 14px;
          margin-bottom: 22px;
      }

      .popup-tstat {
          flex: 1;
          text-align: center;
          display: flex;
          flex-direction: column;
          gap: 2px;
      }

      .popup-tstat strong {
          font-size: 18px;
          font-weight: 800;
          color: #fff;
          line-height: 1;
      }

      .popup-tstat span {
          font-size: 9.5px;
          color: rgba(255,255,255,.7);
          font-weight: 600;
          text-transform: uppercase;
          letter-spacing: .04em;
          white-space: nowrap;
      }

      .popup-tstat-div {
          width: 1px; height: 30px;
          background: rgba(255,255,255,.2);
          margin: 0 4px;
          align-self: center;
      }

      .popup-services-list {
          list-style: none;
          padding: 0; margin: 0;
      }

      .popup-services-list li {
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 13.5px;
          color: rgba(255,255,255,.88);
          margin-bottom: 10px;
          font-weight: 500;
      }

      .popup-svc-icon {
          width: 20px; height: 20px;
          border-radius: 50%;
          background: rgba(255,255,255,.18);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          color: #fff;
      }

      /* ── Right form panel ── */
      .popup-form-area {
          flex: 1 1 62%;
          padding: 36px 30px;
          display: flex;
          flex-direction: column;
      }

      .popup-form-heading {
          font-size: 20px;
          font-weight: 800;
          color: #1a1a2e;
          margin-bottom: 4px;
      }

      .popup-form-sub {
          font-size: 13px;
          color: #6c757d;
          margin-bottom: 18px;
      }

      .success-msg {
          background: #d4edda;
          color: #155724;
          border: 1px solid #c3e6cb;
          padding: 12px 15px;
          border-radius: 8px;
          margin-bottom: 15px;
          font-weight: 600;
          display: flex;
          align-items: center;
          gap: 8px;
      }

      .form-group {
          display: flex;
          flex-direction: column;
          margin-bottom: 10px;
      }

      .form-group input,
      .form-group select,
      .form-group textarea {
          padding: 12px 15px;
          border: 1.5px solid #e5e7eb;
          border-radius: 10px;
          font-size: 14px;
          transition: border-color .25s, box-shadow .25s;
          background: #fafafa;
      }

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
          outline: none;
          border-color: #0d6efd;
          background: #fff;
          box-shadow: 0 0 0 4px rgba(13,110,253,.1);
      }

      .error {
          color: #dc3545;
          font-size: 12.5px;
          margin-top: 3px;
      }

      .submit-btn {
          padding: 14px;
          background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
          color: #fff;
          font-weight: 700;
          font-size: 15px;
          border: none;
          border-radius: 30px;
          cursor: pointer;
          transition: transform .2s ease, box-shadow .2s ease;
          margin-top: 6px;
          width: 100%;
          box-shadow: 0 6px 20px rgba(13,110,253,.3);
          letter-spacing: .01em;
      }

      .submit-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 10px 28px rgba(13,110,253,.42);
      }

      .submit-btn:active { transform: translateY(0); }

      @keyframes popupFade {
          from { transform: scale(0.88); opacity: 0; }
          to   { transform: scale(1);    opacity: 1; }
      }

      @media (max-width: 768px) {
          .popup-overlay {
              align-items: flex-start;
              overflow-y: auto;
              padding-top: 12px;
              padding-bottom: 12px;
          }

          .popup-container {
              max-height: calc(100vh - 24px);
              overflow-y: auto;
              border-radius: 16px;
          }

          .popup-close {
              position: sticky;
              top: 12px; left: auto;
              margin-left: auto;
              display: flex;
              z-index: 20;
              background: #fff;
              color: #374151;
              border-color: #e5e7eb;
          }

          .popup-content { flex-direction: column; }

          .popup-info,
          .popup-form-area { flex: 1 1 100%; }

          .popup-info-inner { padding: 30px 24px; }
          .popup-form-area  { padding: 28px 24px; }
      }
