.elementor-1382 .elementor-element.elementor-element-992a46b > .elementor-container{max-width:800px;}.elementor-1382 .elementor-element.elementor-element-6371b51{--spacer-size:30px;}.elementor-1382 .elementor-element.elementor-element-4093d62:not(.elementor-motion-effects-element-type-background), .elementor-1382 .elementor-element.elementor-element-4093d62 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E3EBEC69;}.elementor-1382 .elementor-element.elementor-element-4093d62 > .elementor-container{max-width:500px;}.elementor-1382 .elementor-element.elementor-element-4093d62{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-1382 .elementor-element.elementor-element-4093d62 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-fd51e0a */<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
      margin: 0;
      padding: 20px;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #333;
    }
    
    .container {
      width: 100%;
      max-width: 900px;
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      position: relative;
      overflow: hidden;
    }

    .container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 8px;
      background: linear-gradient(to right, #ff8c00, #ffd700, #ff8c00);
      z-index: 10;
    }

    .header {
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }

    .header::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 3px;
      background: #ff8c00;
      border-radius: 3px;
    }

    .logo {
      font-size: 2.8rem;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .title {
      color: #1a2a6c;
      font-size: 1.8rem;
      margin-bottom: 5px;
    }

    .subtitle {
      color: #555;
      font-size: 1.1rem;
      font-weight: 400;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }

    .car-info {
      flex: 1;
      min-width: 300px;
      background: linear-gradient(to bottom, #f8f9ff, #e6f0ff);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #e0e8ff;
    }

    .payment-form {
      flex: 1;
      min-width: 300px;
      background: linear-gradient(to bottom, #f8f9ff, #e6f0ff);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #e0e8ff;
    }

    .section-title {
      color: #1a2a6c;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #ffd700;
      font-size: 1.4rem;
    }

    .car-details {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      align-items: center;
    }

    .car-image {
      width: 180px;
      height: 120px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .car-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .car-image:hover img {
      transform: scale(1.05);
    }

    .car-specs p {
      margin: 8px 0;
      display: flex;
      align-items: center;
    }

    .car-specs i {
      width: 24px;
      color: #ff8c00;
      margin-right: 10px;
    }

    .price-summary {
      background: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px dashed #e0e0e0;
    }

    .price-row.total {
      font-weight: bold;
      border-bottom: none;
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid #e0e0e0;
      font-size: 1.2rem;
    }

    .highlight {
      color: #d32f2f;
      font-weight: 700;
    }

    .form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #1a2a6c;
      display: flex;
      align-items: center;
    }

    .form-group label i {
      margin-right: 10px;
      color: #ff8c00;
    }

    .form-group input {
      width: 100%;
      padding: 14px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.3s ease;
      outline: none;
    }

    /* Default placeholder style */
    .form-group input::placeholder {
      color: #999;
      font-weight: normal;
    }

    /* Style for when input has text - bold and dark blue */
    .form-group input.has-text {
      font-weight: 700;
      color: #1a2a6c;
      border-color: #1a2a6c;
      background-color: #f0f7ff;
    }

    .form-group input:focus {
      border-color: #ff8c00;
      box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
    }

    .payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 12px;
      margin: 20px 0;
    }

    .method {
      background: white;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      padding: 15px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .method i {
      font-size: 28px;
      margin-bottom: 8px;
      display: block;
    }

    .method.nagad i { color: #e91e63; }
    .method.bkash i { color: #e2136e; }
    .method.card i { color: #2196F3; }
    .method.cash i { color: #4CAF50; }

    .method:hover {
      border-color: #ff8c00;
      transform: translateY(-3px);
    }

    .method.active {
      border-color: #1a2a6c;
      background: #f0f7ff;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }

    .terms {
      display: flex;
      align-items: flex-start;
      margin: 20px 0;
    }

    .terms input {
      margin-top: 5px;
      margin-right: 10px;
    }

    .terms label {
      color: #555;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .terms a {
      color: #ff8c00;
      text-decoration: none;
      font-weight: 600;
    }

    .terms a:hover {
      text-decoration: underline;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(to right, #ff8c00, #ffd700);
      border: none;
      border-radius: 8px;
      color: white;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    }

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

    .promo-banner {
      background: linear-gradient(to right, #1a2a6c, #3a5ec0);
      color: white;
      padding: 12px;
      border-radius: 8px;
      margin-top: 20px;
      text-align: center;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-banner i {
      margin-right: 10px;
      font-size: 1.2rem;
      color: #ffd700;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .content {
        flex-direction: column;
      }
      
      .car-details {
        flex-direction: column;
        text-align: center;
      }
      
      .car-specs p {
        justify-content: center;
      }
    }
  </style>/* End custom CSS */