.elementor-2626 .elementor-element.elementor-element-e111d73{--display:flex;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-2626 .elementor-element.elementor-element-e111d73.e-con{--align-self:center;--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-2626 .elementor-element.elementor-element-e111d73{--width:264px;}}/* Start custom CSS for html, class: .elementor-element-7278025 */.card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      position: relative;
      background: rgba(255, 255, 255, 0.25);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.4s ease;
      overflow: hidden;
      z-index: 1;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card::before {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 22px;
      background: conic-gradient(from 0deg, #3498db, #9b59b6, #e67e22, #3498db);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: spin 4s linear infinite;
    }

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

    .card::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      right: 2px;
      bottom: 2px;
      border-radius: 18px;
      background: white;
      z-index: -1;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .card h3 {
      margin-top: 0;
      font-size: 22px;
      color: #2c3e50;
    }

    .card .icon {
      font-size: 40px;
      margin-bottom: 10px;
      color: #3498db;
    }

    .card p {
      margin: 6px 0;
      color: #555;
      font-size: 15px;
    }

    .price {
      font-size: 20px;
      font-weight: bold;
      color: #3498db;
      margin: 14px 0;
    }

    .buy-button {
      background: rgba(255,255,255,0.2);
      border: 1px solid #3498db;
      color: #3498db;
      padding: 10px 18px;
      border-radius: 10px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
    }

    .buy-button:hover {
      background-color: #3498db;
      color: white;
    }/* End custom CSS */