 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
     
    }

    body {
      background: #fff;
      color: #333;
    }

    .consultant-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
    }

    /* Left Image */
    .consultant-image img {
      width: 100%;
      max-width: 500px;
      height: auto;
      min-height: 400px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: translateX(-80px);
      transition: all 1s ease;
    }

    .consultant-image.show img {
      opacity: 1;
      transform: translateX(0);
    }

    /* Right Content */
    .consultant-content {
      opacity: 0;
      transform: translateX(80px);
      transition: all 1s ease;
    }

    .consultant-content.show {
      opacity: 1;
      transform: translateX(0);
    }

    .consultant-content h5 {
      font-size: 14px;
      font-weight: 600;
      color: #1a2b6d;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .consultant-content h2 {
    
    font-size: 32px;
    color: #000 !important;
    font-weight: 700;
    
    margin-bottom: 10px;
    }
    @media (max-width: 600px) {
  .consultant-content h2{
    font-size: 30px;
  }
}

    .consultant-content p {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* Features */
    .features {
      display: flex;
      gap: 40px;
      margin-bottom: 20px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature i {
      font-size: 20px;
      color: #e63946;
    }

    .feature span {
      font-size: 15px;
      font-weight: 600;
    
     
    color: #000 !important;
    
    
    }

    /* Info box */
    .info-box {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #eef3ff;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 220px;
      text-align: center;
      flex-direction: column;
    }

    .info-box i {
      font-size: 30px;
      color: #1a2b6d;
    }

    .info-box h3 {
      font-size: 26px;
      font-weight: 700;
      color: #1a2b6d;
    }

    .info-box span {
      font-size: 14px;
      color: #333;
    }

    /* List */
    .service-list {
      margin: 20px 0;
    }

    .service-list li {
      list-style: none;
      font-size: 15px;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #333;
    }

    .service-list li i {
      color: #e63946;
    }

    /* Contact */
    .contact-box {
      margin-top: 20px;
      font-size: 15px;
    }

    .contact-box span {
     
      font-weight: 600;
      text-align: center;
   
    color: #000 !important;
    

    }

    .contact-box a {
      color: #e63946;
      font-weight: 700;
      text-decoration: none;
      margin-left: 5px;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .consultant-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .features {
        justify-content: center;
      }
      .info-box {
        margin: 0 auto 20px;
      }
    }