 .wtc-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .wtc-heading {
      text-align: center;
      margin-bottom: 50px;
    }

    .wtc-heading h2 {
      font-size: 36px;
      color: #2c3e50;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .wtc-heading h2:after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background: #3498db;
      bottom: -10px;
      left: 20%;
    }

    .wtc-heading p {
      font-size: 18px;
      color: #7f8c8d;
      max-width: 700px;
      margin: 0 auto;
    }

    .wtc-feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .wtc-feature-box {
      background: white;
      border-radius: 10px;
      padding: 30px;
      width: 100%;
      max-width: 350px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .wtc-feature-box:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: #3498db;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .wtc-feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .wtc-feature-box:hover:before {
      transform: scaleX(1);
    }

    .wtc-icon {
      font-size: 50px;
      color: #3498db;
      margin-bottom: 20px;
      background: rgba(52, 152, 219, 0.1);
      width: 90px;
      height: 90px;
      line-height: 90px;
      border-radius: 50%;
      text-align: center;
      margin: 0 auto 25px;
      transition: transform 0.3s ease;
    }

    .wtc-feature-box:hover .wtc-icon {
      transform: scale(1.1);
    }

    .wtc-feature-box h3 {
      font-size: 22px;
      color: #2c3e50;
      margin-bottom: 15px;
    }

    .wtc-feature-box p {
      color: #7f8c8d;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .wtc-btn {
      display: inline-block;
      background: #3498db;
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease, transform 0.3s ease;
      margin-top: 10px;
    }

    .wtc-btn:hover {
      background: #2980b9;
      transform: translateY(-3px);
      text-decoration: none;
      color: #fff;
    }

    .wtc-stats-area {
      background: linear-gradient(135deg, #3498db, #2c3e50);
      padding: 0px 0;
      margin-top: 60px;
      color: white;
      text-align: center;
    }

    .wtc-stats-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .wtc-stat {
      flex: 1;
      min-width: 200px;
      padding: 20px;
    }

    .wtc-stat-number {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .wtc-stat-text {
      font-size: 18px;
      opacity: 0.9;
    }

    @media (max-width: 768px) {
      .wtc-feature-list {
        gap: 20px;
      }

      .wtc-feature-box {
        max-width: 100%;
      }

      .wtc-stat {
        min-width: 150px;
      }

      .wtc-stat-number {
        font-size: 36px;
      }
    }

    .wtc-review {
      background: white;
      padding: 40px;
      border-radius: 10px;
      margin: 60px auto;
      max-width: 800px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .wtc-review-text {
      font-size: 18px;
      font-style: italic;
      color: #555;
      margin-bottom: 20px;
    }

    .wtc-review-author {
      font-weight: 600;
      color: #2c3e50;
    }

    /*==============about 2nd=============*/
     .service-container {
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin-left: 100px;
      margin-top: 30px;
      background-color: #fff;
      border-radius: 10px;
     
      overflow: hidden;
      flex-wrap: wrap; /* allows stacking on smaller screens */
    }

    .service-left {
      flex: 1;
      padding: 40px;
      color: #333;
      min-width: 300px;
     
    }

    .service-left h1 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #004a89;
    }

    .service-left p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .service-features {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .service-feature {
      background-color: #e0f7fa;
      color: #00796b;
      padding: 10px 20px;
      margin-right: 15px;
      border-radius: 20px;
      margin-bottom: 10px;
    }

    .service-feature p {
      font-size: 14px;
      margin-bottom: 0px;
    }

    .service-quote-btn {
      background-color: #3498db;
      color: white;
      border: none;
      padding: 15px 25px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .service-quote-btn:hover {
      background-color: #3498db;
      text-decoration: none;
      color: #fff;
      font-weight: 700;
    }

    .service-right {
      flex: 1;
      
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      text-align: center;
      min-width: 300px;
    }

    .service-image {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      height: auto;
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .service-container {
        flex-direction: column;
        margin: 0px;
        padding: 20px;
      }
      
      .service-left, .service-right {
        padding: 20px;
      }

      .service-left h1 {
        font-size: 28px;
      }

      .service-left p {
        font-size: 15px;
      }

      .service-feature {
        padding: 8px 15px;
        font-size: 13px;
      }

      .service-quote-btn {
        padding: 12px 20px;
        font-size: 15px;
      }
    }

    @media (max-width: 500px) {
      .service-left h1 {
        font-size: 24px;
      }

      .service-left p {
        font-size: 14px;
      }

      .service-feature {
        padding: 6px 10px;
        font-size: 12px;
      }

      .service-quote-btn {
        padding: 10px 15px;
        font-size: 14px;
      }

      .service-left, .service-right {
        padding: 15px;
      }
    }